GlobalResponse constructor

GlobalResponse({
  1. int? statusCode,
  2. String? message,
  3. ResultResponse? result,
})

Implementation

GlobalResponse({
  this.statusCode,
  this.message,
  this.result,
});