Provider constructor

const Provider({
  1. required dynamic model(),
  2. List<String> identifierFields = const <String>['email'],
  3. String passwordField = 'password',
})

Implementation

const Provider({
  required this.model,
  this.identifierFields = const <String>['email'],
  this.passwordField = 'password',
});