ServiceNowInstance constructor
ServiceNowInstance({
- required String name,
Implementation
ServiceNowInstance({required this.name}) : url = 'https://$name.service-now.com'{
if(name.isEmpty) throw ArgumentError.value(name, 'name', 'Name must not be empty');
}