copyWith method

SandboxItemResetLoginRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? accessToken,
})

Implementation

SandboxItemResetLoginRequest copyWith(
    {String? clientId, String? secret, String? accessToken}) {
  return SandboxItemResetLoginRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      accessToken: accessToken ?? this.accessToken);
}