memory static method

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

regular: memory thin: memory light: memory bold: memory fill: memory duotone: memory

Implementation

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