getSessionList static method
Implementation
static Future<List<Map<String, dynamic>>> getSessionList() async {
final result = await _bridge.invoke('getSessionList');
return ((result as List?) ?? [])
.map((e) => Map<String, dynamic>.from(e as Map))
.toList();
}