gif static method

PhosphorIconData gif([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: gif thin: gif light: gif bold: gif fill: gif duotone: gif

Implementation

static PhosphorIconData gif(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.gif;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.gif;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.gif;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.gif;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.gif;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.gif;
  }
}