UserProfileResponse.fromJson constructor

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

Implementation

factory UserProfileResponse.fromJson(Map<String, dynamic> json) =>
    UserProfileResponse(
      payload:
          json["payload"] == null ? null : Payload.fromJson(json["payload"]),
      sum: json["sum"],
      timestamp: json["timestamp"],
      requestId: json["requestId"],
    );