setSelectedFeatureLayer method
Implementation
Future<void> setSelectedFeatureLayer(AGMLSelectedLayerArguments arguments) async {
const method = '/setSelectedFeatureLayer';
try {
final channelResponse = await _channel.invokeMethod(method, arguments.toJson());
if (kDebugMode) {
print(channelResponse);
}
} on PlatformException catch (e) {
if(kDebugMode) print(e);
}
}