userCheck static method

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

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

Implementation

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