ThreeDSecureButtonThemeData constructor
- @JsonSerializable(explicitToJson: true)
const
ThreeDSecureButtonThemeData(
{ - String? backgroundColor,
- double? cornerRadius,
- String? textColor,
- 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;