toMap method

  1. @override
Map<String, String> toMap()
override

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(),
    };