meteor static method

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

regular: meteor thin: meteor light: meteor bold: meteor fill: meteor duotone: meteor

Implementation

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