contactlessPayment static method

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

regular: contactless-payment thin: contactless-payment light: contactless-payment bold: contactless-payment fill: contactless-payment duotone: contactless-payment

Implementation

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