OrderData constructor

OrderData({
  1. required AddressObject currentAddress,
  2. required String receiver,
  3. required String currentBlock,
  4. String message = "null",
  5. required int amount,
  6. required AppInfo appInfo,
})

Implementation

OrderData({
  required this.currentAddress,
  required this.receiver,
  required this.currentBlock,
  this.message = "null",
  required this.amount,
  required this.appInfo,
});