LoginDreamView constructor

const LoginDreamView({
  1. Key? key,
  2. String? logoUrl,
  3. required AppBar appBar,
  4. required List<CustomTextFormField> fields,
})

Implementation

const LoginDreamView({
  super.key,
  this.logoUrl,
  required this.appBar,
  required this.fields,
});