greaterThan static method

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

regular: greater-than thin: greater-than light: greater-than bold: greater-than fill: greater-than duotone: greater-than

Implementation

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