CommonModel constructor

CommonModel(
  1. {String? message,
  2. int? code,
  3. String? status}
)

Implementation

CommonModel({
  this.message,
  this.code,
  this.status,
});