copyWith method

CheckDatabaseEncryptionKey copyWith({
  1. String? encryptionKey,
})

Implementation

CheckDatabaseEncryptionKey copyWith({
  String? encryptionKey,
}) => CheckDatabaseEncryptionKey(
  encryptionKey: encryptionKey ?? this.encryptionKey,
);