ProfileState constructor

const ProfileState({
  1. bool isLoading = true,
  2. String? sName,
  3. String? sMobile,
  4. String? sEmail,
  5. String? sPan,
})

Implementation

const ProfileState({
  this.isLoading = true,
  this.sName,
  this.sMobile,
  this.sEmail,
  this.sPan,
});