gridNine static method

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

regular: grid-nine thin: grid-nine light: grid-nine bold: grid-nine fill: grid-nine duotone: grid-nine

Implementation

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