ProfileField constructor

ProfileField({
  1. String? name,
  2. bool? required,
  3. String? type,
  4. int? order,
})

Implementation

ProfileField({
  this.name,
  this.required,
  this.type,
  this.order,
});