globeHemisphereEast static method

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

regular: globe-hemisphere-east thin: globe-hemisphere-east light: globe-hemisphere-east bold: globe-hemisphere-east fill: globe-hemisphere-east duotone: globe-hemisphere-east

Implementation

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