getAccessId method

String? getAccessId()

Gets the application access id. The value can be stored in parameters 'access_id' pr 'client_id'

Return the application access id.

Implementation

String? getAccessId() {
  return super.getAsNullableString('access_id') ??
      super.getAsNullableString('client_id');
}