rootContext property

BuildContext get rootContext

Implementation

static BuildContext get rootContext {
  if (rootKey?.currentContext == null) {
    throw Exception("Context is null, you need to sure MeteorNavigator did init");
  }
  return rootKey!.currentContext!;
}