AccountValidationModel constructor

AccountValidationModel({
  1. String? responseCode,
  2. String? message,
  3. String? name,
  4. String? msgID,
  5. String? nPCIResp,
})

Implementation

AccountValidationModel({
  String? responseCode,
  String? message,
  String? name,
  String? msgID,
  String? nPCIResp,
}) {
  _responseCode = responseCode;
  _message = message;
  _name = name;
  _msgID = msgID;
  _nPCIResp = nPCIResp;
}