gasCan static method

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

regular: gas-can thin: gas-can light: gas-can bold: gas-can fill: gas-can duotone: gas-can

Implementation

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