DbResponse constructor

const DbResponse({
  1. required dynamic data,
  2. String? eTag,
})

Default constructor

Implementation

const factory DbResponse({
  /// The data that was returned by the server.
  required dynamic data,

  /// An optional ETag of the data, if it was requested.
  String? eTag,
}) = _DbResponse;