mouseRightClick static method

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

regular: mouse-right-click thin: mouse-right-click light: mouse-right-click bold: mouse-right-click fill: mouse-right-click duotone: mouse-right-click

Implementation

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