copyWith method

SignalPrepareResponse copyWith({
  1. String? requestId,
})

Implementation

SignalPrepareResponse copyWith({String? requestId}) {
  return SignalPrepareResponse(requestId: requestId ?? this.requestId);
}