ThreeDSecureButtonThemeData constructor

  1. @JsonSerializable(explicitToJson: true)
const ThreeDSecureButtonThemeData({
  1. String? backgroundColor,
  2. double? cornerRadius,
  3. String? textColor,
  4. double? textFontSize,
})

Implementation

@JsonSerializable(explicitToJson: true)
const factory ThreeDSecureButtonThemeData({
  /// Color in hex for button background
  String? backgroundColor,

  /// Button corner radius.
  double? cornerRadius,

  /// Color in hex for button text.
  String? textColor,

  /// Font size for the button text.
  double? textFontSize,
}) = _ThreeDSecureButtonThemeData;