WebviewScreen constructor

const WebviewScreen({
  1. Key? key,
  2. required String appId,
  3. required String publicKey,
  4. required String type,
  5. Map<String, dynamic>? userData,
  6. Map<String, dynamic>? metaData,
  7. Map<String, dynamic>? config,
  8. int? amount,
  9. String? referenceId,
  10. required dynamic success(
    1. dynamic
    ),
  11. required dynamic error(
    1. dynamic
    ),
  12. required dynamic close(
    1. dynamic
    ),
})

Implementation

const WebviewScreen({
  Key? key,
  required this.appId,
  required this.publicKey,
  required this.type,
  this.userData,
  this.metaData,
  this.config,
  this.amount,
  this.referenceId,
  required this.success,
  required this.error,
  required this.close,
}) : super(key: key);