setTintColor static method

void setTintColor(
  1. Color color
)

Sets the tint color used by the native payment UI on iOS. On Android, override the airwallex_tint_color resource instead.

@param color - The tint color to apply.

Implementation

static void setTintColor(Color color) {
  AirwallexPaymentFlutterPlatform.instance.setTintColor(color);
}