copyWith method

PayeeLocationsResponse$Data copyWith({
  1. List<PayeeLocation>? payeeLocations,
})

Implementation

PayeeLocationsResponse$Data copyWith({List<PayeeLocation>? payeeLocations}) {
  return PayeeLocationsResponse$Data(
      payeeLocations: payeeLocations ?? this.payeeLocations);
}