removeSource method
Implementation
@override
Future<void> removeSource(String sourceId) async {
try {
return await _channel.invokeMethod(
'style#removeSource',
<String, Object>{'sourceId': sourceId},
);
} on PlatformException catch (e) {
return Future.error(e);
}
}