rowsPlusBottom static method

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

regular: rows-plus-bottom thin: rows-plus-bottom light: rows-plus-bottom bold: rows-plus-bottom fill: rows-plus-bottom duotone: rows-plus-bottom

Implementation

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