build method
Implementation
Options build() {
if (_clientId == null || _clientSecret == null || _environment == null) {
throw Exception('Client ID, Client Secret, and Environment are required.');
}
return Options._builder(this);
}
Options build() {
if (_clientId == null || _clientSecret == null || _environment == null) {
throw Exception('Client ID, Client Secret, and Environment are required.');
}
return Options._builder(this);
}