copyWith method

DGePayPaymentRespModel copyWith({
  1. bool? status,
  2. num? errorCode,
  3. String? message,
  4. String? dGePayOrderId,
})

Implementation

DGePayPaymentRespModel copyWith({  bool? status,
  num? errorCode,
  String? message,
  String? dGePayOrderId,
}) => DGePayPaymentRespModel(  status: status ?? _status,
  errorCode: errorCode ?? _errorCode,
  message: message ?? _message,
  dGePayOrderId: dGePayOrderId ?? _dGePayOrderId,
);