PlayIntegrity.fromJson constructor

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

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']),
  );
}