BlocChangeLog constructor

BlocChangeLog({
  1. required BlocBase bloc,
  2. required Change change,
  3. required ISpectifyBlocSettings settings,
})

Implementation

BlocChangeLog({
  required this.bloc,
  required this.change,
  required this.settings,
}) : super(
        key: getKey,
        '${bloc.runtimeType} changed',
        title: getKey,
      );