PayemntScreen constructor

const PayemntScreen({
  1. Key? key,
  2. String? title,
  3. required String url,
  4. @Deprecated("Use appBarBackgroundColor") Color? titleBackgroundColor,
  5. Color? appBarBackgroundColor,
  6. Color? appBarTextColor,
  7. double? appBarElevation,
  8. void onProgress(
    1. int
    )?,
  9. void onPageFinished(
    1. String
    )?,
})

Implementation

const PayemntScreen({
  Key? key,
  this.title,
  required this.url,
  @Deprecated("Use appBarBackgroundColor") this.titleBackgroundColor,
  this.appBarBackgroundColor,
  this.appBarTextColor,
  this.appBarElevation,
  this.onProgress,
  this.onPageFinished,
}) : super(key: key);