TransferBy constructor

TransferBy(
  1. {int? id,
  2. String? fullName,
  3. String? email,
  4. String? countryCode,
  5. String? contactNumber,
  6. String? profileImage}
)

Implementation

TransferBy({
  this.id,
  this.fullName,
  this.email,
  this.countryCode,
  this.contactNumber,
  this.profileImage,
});