User constructor

User({
  1. String? sadadId,
  2. int? id,
})

Implementation

User({
  this.sadadId,
  this.id,
});