LoginPage constructor

LoginPage({
  1. required String logoImage,
  2. required Function onLoginSuccess,
  3. String? footerImage,
  4. Color? createAccountTextColor,
})

Implementation

LoginPage({
  required this.logoImage,
  required this.onLoginSuccess,
  this.footerImage,
  this.createAccountTextColor,
});