PayemntScreen constructor

const PayemntScreen({
  1. Key? key,
  2. String? title,
  3. required String url,
  4. Color? titleBackgroundColor,
  5. void onPageFinished(
    1. String
    )?,
})

Implementation

const PayemntScreen(
    {Key? key,
    this.title,
    required this.url,
    this.titleBackgroundColor,
    this.onPageFinished})
    : super(key: key);