numberZero static method

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

regular: number-zero thin: number-zero light: number-zero bold: number-zero fill: number-zero duotone: number-zero

Implementation

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