fileSql static method

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

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

Implementation

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