bracketsRound static method

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

regular: brackets-round thin: brackets-round light: brackets-round bold: brackets-round fill: brackets-round duotone: brackets-round

Implementation

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