pokerChip static method

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

regular: poker-chip thin: poker-chip light: poker-chip bold: poker-chip fill: poker-chip duotone: poker-chip

Implementation

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