binary static method

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

regular: binary thin: binary light: binary bold: binary fill: binary duotone: binary

Implementation

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