runZoned<T> method

Future<T> runZoned<T>(
  1. Future<T> action()
)

Run in a zone,

Implementation

Future<T> runZoned<T>(Future<T> Function() action) =>
    shellContext.copyWith(shellEnvironment: this).runZoned(action);