Created
April 1, 2020 13:58
-
-
Save kichiemon/5bd65045c4c019286bbf166d468b44c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@override | |
Future<void> settings({ | |
bool persistenceEnabled, | |
String host, | |
bool sslEnabled, | |
int cacheSizeBytes, | |
}) async { | |
await channel.invokeMethod<void>('Firestore#settings', <String, dynamic>{ | |
'app': app.name, | |
'persistenceEnabled': persistenceEnabled, | |
'host': host, | |
'sslEnabled': sslEnabled, | |
'cacheSizeBytes': cacheSizeBytes, | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment