DescribeDevicePolicyConfigurationResponse.fromJson constructor

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

Implementation

factory DescribeDevicePolicyConfigurationResponse.fromJson(
    Map<String, dynamic> json) {
  return DescribeDevicePolicyConfigurationResponse(
    deviceCaCertificate: json['DeviceCaCertificate'] as String?,
  );
}