GooglePayResponse constructor

GooglePayResponse({
  1. String? errorCode,
  2. String? errorMessage,
  3. bool? success,
  4. Data? data,
  5. ErrorInfo? error,
})

Ответ на оплату с помощью Google Pay

Implementation

GooglePayResponse({
  String? errorCode,
  String? errorMessage,
  this.success,
  this.data,
  this.error,
}) : super(
        errorCode: errorCode,
        errorMessage: errorMessage,
      );