bridge static method

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

regular: bridge thin: bridge light: bridge bold: bridge fill: bridge duotone: bridge

Implementation

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