PlayIntegrity.fromJson constructor
Implementation
factory PlayIntegrity.fromJson(Map<String, dynamic> json) {
return PlayIntegrity(
requestDetails: RequestDetails.fromJson(json['requestDetails']),
appIntegrity: AppIntegrity.fromJson(json['appIntegrity']),
deviceIntegrity: DeviceIntegrity.fromJson(json['deviceIntegrity']),
accountDetails: AccountDetails.fromJson(json['accountDetails']),
);
}