Candidate constructor

Candidate({
  1. String? candidateUrl,
  2. List<Channel>? channels,
  3. String? email,
  4. String? name,
  5. String? orderOnBallot,
  6. String? party,
  7. String? phone,
  8. String? photoUrl,
})

Implementation

Candidate({
  this.candidateUrl,
  this.channels,
  this.email,
  this.name,
  this.orderOnBallot,
  this.party,
  this.phone,
  this.photoUrl,
});