copyWith method

SetDatabaseEncryptionKey copyWith({
  1. String? newEncryptionKey,
})

Implementation

SetDatabaseEncryptionKey copyWith({String? newEncryptionKey}) =>
    SetDatabaseEncryptionKey(
      newEncryptionKey: newEncryptionKey ?? this.newEncryptionKey,
    );