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