at static method

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

regular: at thin: at light: at bold: at fill: at duotone: at

Implementation

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