getBlockActivityLog method
Implementation
@override
Future<List<Map<String, dynamic>>> getBlockActivityLog() async {
final List<dynamic>? result = await methodChannel.invokeMethod(
'getBlockActivityLog',
);
if (result == null) return [];
return result.map((e) => Map<String, dynamic>.from(e as Map)).toList();
}