safeContext property

BuildContext? get safeContext
inherited

Implementation

BuildContext? get safeContext {
  assert(_context != null, 'Context accessed before initialization');
  return _context!;
}