globe property

AppIconData get globe

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

Implementation

static AppIconData get globe {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.globe;
    case AppIconsStyle.thin:
      return AppIconsThin.globe;
    case AppIconsStyle.light:
      return AppIconsLight.globe;
    case AppIconsStyle.bold:
      return AppIconsBold.globe;
    case AppIconsStyle.fill:
      return AppIconsFill.globe;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.globe;
  }
}