asMap property

Map<String, dynamic> asMap

Returns the settings as a Map

Implementation

Map<String, dynamic> get asMap {
  return {
    'persistenceEnabled': persistenceEnabled,
    'host': host,
    'sslEnabled': sslEnabled,
    'cacheSizeBytes': cacheSizeBytes,
    if (kIsWeb) 'ignoreUndefinedProperties': ignoreUndefinedProperties,
  };
}