copyWith method

TransferOriginatorGetResponse copyWith({
  1. Originator? originator,
  2. String? requestId,
})

Implementation

TransferOriginatorGetResponse copyWith(
    {Originator? originator, String? requestId}) {
  return TransferOriginatorGetResponse(
      originator: originator ?? this.originator,
      requestId: requestId ?? this.requestId);
}