highDefinition static method

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

regular: high-definition thin: high-definition light: high-definition bold: high-definition fill: high-definition duotone: high-definition

Implementation

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