AttributeEmail constructor

AttributeEmail({
  1. required String key,
  2. required String type,
  3. required String status,
  4. required bool xrequired,
  5. bool? array,
  6. required String format,
  7. String? xdefault,
})

Implementation

AttributeEmail({
  required this.key,
  required this.type,
  required this.status,
  required this.xrequired,
  this.array,
  required this.format,
  this.xdefault,
});