token property

String get token

Google authorization token with 'https://www.googleapis.com/auth/drive.appdata' scope.

Pass to Goog Drive API to access 'appdata' space.

Implementation

String get token => _token;
set token (String v)

Implementation

set token(String v) {
  if (_token != v) {
    _token = v;
  }
  if (_token.isNotEmpty) {
    error.value = false;
  }
}