ProfileModel constructor

ProfileModel({
  1. Profile? data,
  2. bool? status,
})

Constructs an instance of ProfileModel.

Implementation

ProfileModel({
  this.data,
  this.status,
});