globeSimple static method

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

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

Implementation

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