houseLine static method

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

regular: house-line thin: house-line light: house-line bold: house-line fill: house-line duotone: house-line

Implementation

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