addDBEncryptionToConfig method

  1. @override
void addDBEncryptionToConfig(
  1. Map dbEncryption
)
override

Adds database encryption configuration by invoking the native platform method.

This sends the dbEncryption configuration to the native platform implementation through the method channel.

Implementation

@override
void addDBEncryptionToConfig(Map dbEncryption) {
  methodChannel.invokeMethod('addDBEncryptionToConfig', dbEncryption);
}