boundingBox static method

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

regular: bounding-box thin: bounding-box light: bounding-box bold: bounding-box fill: bounding-box duotone: bounding-box

Implementation

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