clearBatch method

bool clearBatch()

Implementation

bool clearBatch() {
  try {
    this.batch = {};
    return true;
  } on Exception catch (e) {
    print(e);
    return false;
  }
}