codeSimple static method

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

regular: code-simple thin: code-simple light: code-simple bold: code-simple fill: code-simple duotone: code-simple

Implementation

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