DbResponse constructor
const
DbResponse({
- required dynamic data,
- 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;