copyWith method

SandboxTransferTestClockGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? testClockId,
})

Implementation

SandboxTransferTestClockGetRequest copyWith(
    {String? clientId, String? secret, String? testClockId}) {
  return SandboxTransferTestClockGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      testClockId: testClockId ?? this.testClockId);
}