rows static method

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

regular: rows thin: rows light: rows bold: rows fill: rows duotone: rows

Implementation

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