DeleteResult constructor

const DeleteResult({
  1. int? id,
  2. String? object,
  3. bool? deleted,
})

An object used for DELETE results for the APIs.

Implementation

const factory DeleteResult({
  final int? id,
  final String? object,
  final bool? deleted,
}) = _Delete;