trolley static method

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

regular: trolley thin: trolley light: trolley bold: trolley fill: trolley duotone: trolley

Implementation

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