getMessagesAfterDateByTopic method
Implementation
@override
Future<List<Map<String, dynamic>>> getMessagesAfterDateByTopic(String topic, DateTime fromDate) async {
final List<dynamic> result = await methodChannel.invokeMethod('getMessagesAfterDateByTopic', {
'topic': topic,
'fromDate': fromDate.millisecondsSinceEpoch,
});
return result.map((e) => Map<String, dynamic>.from(e as Map)).toList();
}