getLogSnapshot method

  1. @override
Future<List<MnnLogEntry>> getLogSnapshot()
override

Implementation

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