fishSimple static method

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

regular: fish-simple thin: fish-simple light: fish-simple bold: fish-simple fill: fish-simple duotone: fish-simple

Implementation

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