DelegatedService.fromJson constructor

DelegatedService.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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