DelegatedService.fromJson constructor
Implementation
factory DelegatedService.fromJson(Map<String, dynamic> json) {
return DelegatedService(
delegationEnabledDate: timeStampFromJson(json['DelegationEnabledDate']),
servicePrincipal: json['ServicePrincipal'] as String?,
);
}