InvalidDataVerificationReport.fromJson constructor

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

Implementation

factory InvalidDataVerificationReport.fromJson(Map<String, dynamic> json) =>
    InvalidDataVerificationReport(
      overallIsInvalid: (json["overallIsInvalid"] as bool),
      fieldDetails: (json["fieldDetails"] as List<dynamic>)
          .map((it) => FieldInvalidDataVerificationReport.fromJson(
              it as Map<String, dynamic>))
          .toList(),
    );