ThreeDSecureTextFieldThemeData constructor
- @JsonSerializable(explicitToJson: true)
const
ThreeDSecureTextFieldThemeData(
{ - String? borderColor,
- double? borderWidth,
- double? cornerRadius,
- String? textColor,
- double? textFontSize,
})
Implementation
@JsonSerializable(explicitToJson: true)
const factory ThreeDSecureTextFieldThemeData({
/// Color in hex for the border
String? borderColor,
/// Thickness of the textfield border.
double? borderWidth,
/// Radius for the textfield corners.
double? cornerRadius,
/// Color in hex for the textfield value.
String? textColor,
/// Font size for the textfield text.
double? textFontSize,
}) = _ThreeDSecureTextFieldThemeData;