PaymentResponse constructor
PaymentResponse({})
Implementation
PaymentResponse({
required this.raw,
required this.status,
required this.code,
required String? message,
this.data,
}) : super(
isSuccess: _isSuccessStatus(status, code),
message: message,
);