NewLoginLayout constructor

const NewLoginLayout({
  1. Key? key,
  2. required dynamic onLogin(
    1. LoginHistory history
    ),
})

Implementation

const NewLoginLayout(
    {Key? key, required this.onLogin})
    : super(key: key);