call method

Future<void> call(
  1. String sourceId,
  2. String collection,
  3. String column,
  4. Object? newValue,
  5. Map<String, dynamic> row,
)

Implementation

Future<void> call(
  String sourceId,
  String collection,
  String column,
  Object? newValue,
  Map<String, dynamic> row,
) =>
    _repository.updateCell(sourceId, collection, column, newValue, row);