resize static method

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

regular: resize thin: resize light: resize bold: resize fill: resize duotone: resize

Implementation

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