enable static method
void
enable()
Enables use of FlutterCryptography.
You can call this method any number of times.
The method is just a helper for calling Cryptography.freezeInstance()
:
Cryptography.freezeInstance(FlutterCryptography.defaultInstance);
Implementation
static void enable() {
Cryptography.freezeInstance(defaultInstance);
}