Validate constructor

Validate({
  1. List<String>? mobile,
  2. String? status,
  3. String? data,
})

Constructs a Validate instance with the given fields.

Implementation

Validate({
  this.mobile,
  this.status,
  this.data,
});