command static method

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

regular: command thin: command light: command bold: command fill: command duotone: command

Implementation

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