AgentData constructor

AgentData({
  1. required AgentSign agentSign,
  2. String? operationName,
  3. List<String>? phones,
  4. List<String>? receiverPhones,
  5. List<String>? transferPhones,
  6. String? operatorName,
  7. String? operatorAddress,
  8. String? operatorInn,
})

Implementation

AgentData({
  required this.agentSign,
  this.operationName,
  this.phones,
  this.receiverPhones,
  this.transferPhones,
  this.operatorName,
  this.operatorAddress,
  this.operatorInn,
});