fileCpp static method

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

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

Implementation

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