BlocWidget constructor

BlocWidget({
  1. Key? key,
  2. Map<String, dynamic> arguments = const {},
  3. Widget? child,
})

Implementation

BlocWidget({
  Key? key,
  this.arguments = const {},
  this.child,
}) : super(key: key);