magnetStraight static method

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

regular: magnet-straight thin: magnet-straight light: magnet-straight bold: magnet-straight fill: magnet-straight duotone: magnet-straight

Implementation

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