IdentityResponse.fromJson constructor

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

Implementation

factory IdentityResponse.fromJson(Map<String, dynamic> json) =>
    IdentityResponse(
      height: json['height'],
      result: Result.fromJson(json['result']),
    );