commit static method

bool commit({
  1. String message = "",
})

Executes Commit

Implementation

static bool commit({String message = ""}) => _apiFound ? _version.commit(message) : false;