SimpleEmailPasswordLoginForm constructor

const SimpleEmailPasswordLoginForm({
  1. Key? key,
  2. void onLogin()?,
  3. void onRegister()?,
  4. EdgeInsets? padding,
})

Implementation

const SimpleEmailPasswordLoginForm({
  super.key,
  this.onLogin,
  this.onRegister,
  this.padding,
});