toggleLeft static method

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

regular: toggle-left thin: toggle-left light: toggle-left bold: toggle-left fill: toggle-left duotone: toggle-left

Implementation

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