We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
class Data { late String data1; late String data2; String toJson() { return '{"data1":' + data1 + ',' + '"data2": ' + data2 + '}'; } } class DataFetcher { Data getData() { var data = new Data(); data.data1 = 'data1'; data.data2 = 'data2'; return data; } } void getData(SendPort sendPort) { var data = DataFetcher().getData(); sendPort.send(data.toJson()); } void getDataAsync() async { var receivePort= ReceivePort(); //port for isolate to receive messages. var isolate = await Isolate.spawn(getData, receivePort.sendPort); receivePort.listen((data) { stdout.write('Receiving: ' + data + ', '); isolate.kill(); }); } void main(){ getDataAsync(); }
2.2K Point(s)
1.2K Point(s)
313 Point(s)
178 Point(s)
138 Point(s)
Input your email to receive reset password link, or if you remember your password, you can click