AddOnAttachmentStudentSubmission.fromJson constructor

AddOnAttachmentStudentSubmission.fromJson(
  1. Map json_
)

Implementation

AddOnAttachmentStudentSubmission.fromJson(core.Map json_)
    : this(
        pointsEarned: (json_['pointsEarned'] as core.num?)?.toDouble(),
        postSubmissionState: json_['postSubmissionState'] as core.String?,
      );