AuthenticationProvider<T extends Object> constructor

AuthenticationProvider<T extends Object>({
  1. required AuthenticationController<T> controller,
  2. required Widget builder(
    1. BuildContext context
    ),
  3. Key? key,
})

Implementation

AuthenticationProvider({required this.controller, required this.builder, Key? key})
    : super(child: _AuthenticationWidget(builder, controller), key: key);