terminal static method

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

regular: terminal thin: terminal light: terminal bold: terminal fill: terminal duotone: terminal

Implementation

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