FlipSubmitShortAnswersResponseError.fromJson constructor

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

Implementation

factory FlipSubmitShortAnswersResponseError.fromJson(
        Map<String, dynamic> json) =>
    FlipSubmitShortAnswersResponseError(
      code: json["code"],
      message: json["message"],
    );