greaterThanOrEqual static method

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

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

Implementation

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