EasyManager constructor

const EasyManager({Key key, @required List<SingleChildCloneableWidget> bloc, Widget child })

Implementation

const EasyManager({
  Key key,
  @required this.bloc,
  this.child,
})  : assert(bloc != null),
      super(key: key);