PayResultEntity constructor

PayResultEntity({
  1. bool status = false,
  2. String? message,
  3. String? orderId,
  4. String? uuidString,
  5. String? transactionIdentifier,
  6. bool? sandbox,
  7. num? code,
})

Implementation

PayResultEntity({
  bool status = false,
  String? message,
  String? orderId,
  String? uuidString,
  String? transactionIdentifier,
  bool? sandbox,
  num? code,}){
  _status = status;
  _message = message;
  _orderId = orderId;
  _uuidString = uuidString;
  _transactionIdentifier = transactionIdentifier;
  _sandbox = sandbox;
  _code = code;
}