SignInWidgetsColumn constructor

const SignInWidgetsColumn({
  1. double width = 400,
  2. double spacing = 0,
  3. required List<Widget> children,
  4. Key? key,
})

Creates a sign-in widgets column.

Implementation

const SignInWidgetsColumn({
  this.width = 400,
  this.spacing = 0,
  required this.children,
  super.key,
}) : assert(
       width > 0 && width <= 400,
       'Invalid width. Must be between 0 and 400.',
     );