lockKey static method

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

regular: lock-key thin: lock-key light: lock-key bold: lock-key fill: lock-key duotone: lock-key

Implementation

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