void sendData() async {
final session = StateInheritedWidget.of(context).state.session;
String Datas;
try {
final String result = await sendData.invokeMethod(
'sendData',{"bVolt":1.5,"hstring":2.5,
"qString":3.5,"ExternalDeg":5.5,
"extDeg":6.5,"sessionNo":int.tryParse(session) ?? 0});
Datas = 'sendData response $result % .';
} on PlatformException catch (e) {
Datas = "Failed to get session response: '${e.message}'.";
}
}
Here I am passing a string data, I want to pass object data from database and send to android java and retrieve that data from java , How its possible through method channel?
You can Send it as
List of Map
like this:and in android part (kotlin) you can try this:
and in your java part you can make a for loop and access your data: