AccountUpdateProfile constructor

const AccountUpdateProfile({
  1. String? firstName,
  2. String? lastName,
  3. String? about,
})

Account Update Profile constructor.

Implementation

const AccountUpdateProfile({
  this.firstName,
  this.lastName,
  this.about,
}) : super._();