gpsSlash static method

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

regular: gps-slash thin: gps-slash light: gps-slash bold: gps-slash fill: gps-slash duotone: gps-slash

Implementation

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