getLogSnapshot method
Implementation
@override
Future<List<MnnLogEntry>> getLogSnapshot() async {
final values = await _invoke<List<Object?>>('getLogSnapshot');
return values.map(MnnLogEntry.fromMap).toList(growable: false);
}
@override
Future<List<MnnLogEntry>> getLogSnapshot() async {
final values = await _invoke<List<Object?>>('getLogSnapshot');
return values.map(MnnLogEntry.fromMap).toList(growable: false);
}