toMap method
Converts the WebOptions
instance into a map representation,
including all web-specific properties.
Implementation
@override
Map<String, String> toMap() => <String, String>{
'dbName': dbName,
'publicKey': publicKey,
'wrapKey': wrapKey,
'wrapKeyIv': wrapKeyIv,
'useSessionStorage': useSessionStorage.toString(),
};