finnTheHuman static method

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

regular: finn-the-human thin: finn-the-human light: finn-the-human bold: finn-the-human fill: finn-the-human duotone: finn-the-human

Implementation

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