crane static method

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

regular: crane thin: crane light: crane bold: crane fill: crane duotone: crane

Implementation

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