then method

TaskBatch then(
  1. void callback(
    1. List<Map<String, dynamic>>
    )
)

Register success callback

Implementation

TaskBatch then(void Function(List<Map<String, dynamic>>) callback) {
  _thenCallbacks.add(callback);
  return this;
}