ServiceNowInstance constructor

ServiceNowInstance({
  1. 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');
}