loadSyncGeodatabase method
Implementation
Future<void> loadSyncGeodatabase(AGMLGeodatabase agmlGeodatabase) async {
const method = '/loadSyncGeodatabase';
try {
final channelResponse = await _channel.invokeMethod(method, agmlGeodatabase.toJson()) as String;
onLoadLocalFeatureChannelResponse(AGMLLocalFeatureLayer(path: agmlGeodatabase.path!), channelResponse);
} catch(e) {
if(kDebugMode) print(e);
}
}