gridFour static method

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

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

Implementation

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