update<R> abstract method

Future<Response<T>> update<R>(
  1. String id,
  2. Map<String, dynamic> data, {
  3. R? source(
    1. R parent
    )?,
})

Implementation

Future<Response<T>> update<R>(
  String id,
  Map<String, dynamic> data, {
  R? Function(R parent)? source,
});