FlutterIdInfo constructor

FlutterIdInfo({
  1. required String country,
  2. String? idType,
  3. String? idNumber,
  4. String? firstName,
  5. String? middleName,
  6. String? lastName,
  7. String? dob,
  8. String? bankCode,
  9. bool? entered,
})

Implementation

FlutterIdInfo({
  required this.country,
  this.idType,
  this.idNumber,
  this.firstName,
  this.middleName,
  this.lastName,
  this.dob,
  this.bankCode,
  this.entered,
});