copyWith method

UserKey copyWith({
  1. String? accountId,
  2. String? key,
})

Implementation

UserKey copyWith({String? accountId, String? key}) {
  return UserKey(
    accountId: accountId ?? this.accountId,
    key: key ?? this.key,
  );
}