terminalWindow static method

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

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

Implementation

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