Customer constructor

Customer({
  1. String? id,
  2. String? createdAt,
  3. bool? verifyUsers,
})

Implementation

Customer({this.id, this.createdAt, this.verifyUsers});