JsonResponse constructor

JsonResponse({
  1. required int code,
  2. required String text,
  3. String? message,
  4. dynamic json,
})

Implementation

JsonResponse({
  required this.code,
  required this.text,
  this.message,
  this.json,
});