navigate method
Navigates to the screen with the given screenName.
Implementation
Future<void> navigate({
required String screenName,
}) async {
await _send({
'navigation': screenName,
});
}
Navigates to the screen with the given screenName.
Future<void> navigate({
required String screenName,
}) async {
await _send({
'navigation': screenName,
});
}