recentContext method
Implementation
@override
Future<int?> recentContext(String flowName) async {
final contextId =
await methodChannel.invokeMethod<int>('recentContext', flowName);
if (contextId == -1) {
return null;
}
return contextId;
}