UserModel constructor

UserModel({
  1. int? id,
  2. String? name,
  3. String? token,
})

Implementation

UserModel({this.id, this.name, this.token});