bezierCurve static method

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

regular: bezier-curve thin: bezier-curve light: bezier-curve bold: bezier-curve fill: bezier-curve duotone: bezier-curve

Implementation

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