fileLock static method

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

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

Implementation

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