BLoCWidget<T> constructor

const BLoCWidget<T>({
  1. Key? key,
  2. required Widget child(
    1. BuildContext context, {
    2. Key? key,
    }),
})

Implementation

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