of static method

finds the nearest ToastificationConfigProvider in the upper tree

Implementation

static ToastificationConfigProvider of(BuildContext context) {
  final ToastificationConfigProvider? result = maybeOf(context);
  assert(result != null, 'No ToastificationConfigProvider found in context');
  return result!;
}