FunctionResponse constructor

FunctionResponse({
  1. dynamic data,
  2. required int status,
})

Implementation

FunctionResponse({
  this.data,
  required this.status,
});