globe static method

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

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

Implementation

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