bed static method

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

regular: bed thin: bed light: bed bold: bed fill: bed duotone: bed

Implementation

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