blueprint static method

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

regular: blueprint thin: blueprint light: blueprint bold: blueprint fill: blueprint duotone: blueprint

Implementation

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