PaymentResult constructor

PaymentResult({
  1. required bool error,
  2. required String message,
  3. required String status,
  4. String? code,
})

Implementation

PaymentResult(
    {required this.error,
    required this.message,
    required this.status,
    this.code});