TValidateSessionInput.fromJson constructor

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

Implementation

factory TValidateSessionInput.fromJson(Map<String, dynamic> json) =>
    TValidateSessionInput(
        body: TValidateSessionBody.fromJson(
            json['body'] as Map<String, dynamic>));