password static method

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

regular: password thin: password light: password bold: password fill: password duotone: password

Implementation

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