updateAll<T extends BmobTable> method

BmobBatch updateAll<T extends BmobTable>(
  1. List<T> tables, {
  2. Map<String, dynamic>? body,
})

Implementation

BmobBatch updateAll<T extends BmobTable>(List<T> tables,
    {Map<String, dynamic>? body}) {
  for (var table in tables) {
    update(table, body: body);
  }
  return this;
}