Create constructor

Create({
  1. bool? success,
  2. int? code,
  3. Map? data,
  4. String? description,
})

Implementation

Create({
  this.success,
  this.code,
  this.data,
  this.description,
});