fromJson static method

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

Implementation

static AppKey fromJson(Map<String, dynamic> json) {
  AppKeyMicroblink microblinkObj = AppKeyMicroblink.fromJson(json['microblink']);
  AppKeyIProov iproovObj = AppKeyIProov.fromJson(json['iProov']);
  return AppKey(microblinkObj, iproovObj);
}