SyncResponse<T> constructor

SyncResponse<T>({
  1. required bool success,
  2. T? data,
  3. String? error,
})

Implementation

SyncResponse({
  required this.success,
  this.data,
  this.error,
});