globeSimpleX static method

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

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

Implementation

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