unsubscribe static method
Implementation
static Future<void> unsubscribe(dynamic topics) async {
// Running on Web?
if (kIsWeb) {}
// Attempt to unsubscribe the device from topic(s)
return await _channel.invokeMethod('unsubscribe', <dynamic>[topics]);
}