checkFat static method

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

regular: check-fat thin: check-fat light: check-fat bold: check-fat fill: check-fat duotone: check-fat

Implementation

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