textColumns static method

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

regular: text-columns thin: text-columns light: text-columns bold: text-columns fill: text-columns duotone: text-columns

Implementation

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