OrganizationRegistrationState constructor

const OrganizationRegistrationState({
  1. String? selectedStatus,
  2. String? selectedDesignation,
  3. String? selectedState,
  4. String? selectedCity,
})

Creates an OrganizationRegistrationState with the given values.

Implementation

const OrganizationRegistrationState({
  this.selectedStatus,
  this.selectedDesignation,
  this.selectedState,
  this.selectedCity,
});