Store4<A, B, C, D> constructor

Store4<A, B, C, D>({Key key, @required Widget builder(BuildContext context, A value, B value2, C value3, D value4, Widget child), Widget child })

Implementation

Store4({
  Key key,
  @required this.builder,
  this.child,
})  : assert(builder != null),
      super(key: key);