rowsPlusTop static method

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

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

Implementation

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