LoginField constructor

LoginField({
  1. EdgeInsets padding = const EdgeInsets.all(5),
  2. Key? key,
  3. bool autofocus = false,
})

Implementation

LoginField(
    {this.padding = const EdgeInsets.all(5),
    Key? key,
    this.autofocus = false})
    : super(key: key);