update<R> method

  1. @override
Future<Response<T>> update<R>(
  1. String id,
  2. Map<String, dynamic> data, [
  3. R? source(
    1. R parent
    )?
])
override

Implementation

@override
Future<Response<T>> update<R>(
  String id,
  Map<String, dynamic> data, [
  R? Function(R parent)? source,
]) {
  return remote.update(
    id,
    data,
    source: source,
  );
}