globeStand static method

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

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

Implementation

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