SplitCloseResult constructor

const SplitCloseResult({
  1. required String state,
  2. required double totalAmountPaid,
  3. required double totalAmountOutstanding,
  4. required double orderTotal,
  5. required String message,
})

Implementation

const SplitCloseResult({
  required this.state,
  required this.totalAmountPaid,
  required this.totalAmountOutstanding,
  required this.orderTotal,
  required this.message,
});