diamondsFour static method

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

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

Implementation

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