gameController static method

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

regular: game-controller thin: game-controller light: game-controller bold: game-controller fill: game-controller duotone: game-controller

Implementation

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