ThreeDSecureNavigationBarThemeData constructor

  1. @JsonSerializable(explicitToJson: true)
const ThreeDSecureNavigationBarThemeData({
  1. String? headerText,
  2. String? buttonText,
  3. String? textColor,
  4. String? statusBarColor,
  5. String? backgroundColor,
  6. double? textFontSize,
})

Implementation

@JsonSerializable(explicitToJson: true)
const factory ThreeDSecureNavigationBarThemeData({
  /// Localised text of the header.
  String? headerText,

  /// localised text of the button
  String? buttonText,

  /// Color in hex to display navigation bar header text.
  String? textColor,

  /// Color in hex for the status bar.

  String? statusBarColor,

  /// Color in hex to display navigation bar background.

  String? backgroundColor,

  /// Font size of header text.
  double? textFontSize,
}) = _ThreeDSecureNavigationBarThemeData;