addDiagnosticsInfo method
Implementation
@override
Future<void> addDiagnosticsInfo(String heading, String key, String value) async {
try {
return methodChannel.invokeMethod<void>("addDiagnosticsInfo", {"heading": heading, "key": key, "value": value});
} on PlatformException catch (e, s) {
print(s);
return;
}
}