cursor static method

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

regular: cursor thin: cursor light: cursor bold: cursor fill: cursor duotone: cursor

Implementation

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