presentation static method

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

regular: presentation thin: presentation light: presentation bold: presentation fill: presentation duotone: presentation

Implementation

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