mathOperations static method

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

regular: math-operations thin: math-operations light: math-operations bold: math-operations fill: math-operations duotone: math-operations

Implementation

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