table static method

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

regular: table thin: table light: table bold: table fill: table duotone: table

Implementation

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