BitNotifier<M, V, L, B extends BitControl<M, V, L> >.make constructor
BitNotifier<M, V, L, B extends BitControl<M, V, L> >.make ({})
Implementation
factory BitNotifier.make(
{Key? key,
Function(B bit, L? loading)? onLoading,
Function(B bit, dynamic error)? onError,
Function(B bit, M data)? onData,
required Widget child}) =>
BitNotifier(
key: key,
onLoading: onLoading,
onError: onError,
onData: onData,
child: child);