SyncResponse constructor

SyncResponse({
  1. required int statusCode,
  2. dynamic body,
  3. Map<String, String>? headers,
})

Implementation

SyncResponse({
  required this.statusCode,
  this.body,
  this.headers,
});