folderSimpleLock static method

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

regular: folder-simple-lock thin: folder-simple-lock light: folder-simple-lock bold: folder-simple-lock fill: folder-simple-lock duotone: folder-simple-lock

Implementation

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