copyWith method

TransferSales copyWith({
  1. String? from,
  2. String? to,
})

Implementation

TransferSales copyWith({  String? from,
  String? to,
}) => TransferSales(  from: from ?? _from,
  to: to ?? _to,
);