NG<T> constructor

const NG<T>(
  1. NGValue<T> ngValue,
  2. Widget builder(
    1. T value
    ), {
  3. Key? key,
  4. Widget noDataWidget = const SizedBox(),
})

Implementation

const NG(this.ngValue, this.builder, {Key? key, this.noDataWidget = const SizedBox()})
    : super(key: key);