barn static method

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

regular: barn thin: barn light: barn bold: barn fill: barn duotone: barn

Implementation

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