ContextStorage constructor

const ContextStorage({
  1. Key? key,
  2. String? name,
  3. required Widget child,
})

Creates a ContextStorage widget.

Implementation

const ContextStorage({
  Key? key,
  this.name,
  required this.child,
}) : super(key: key);