import 'dart:convert'; List verificationFormResponseFromJson(String str) => List.from(json.decode(str).map((x) => VerificationFormResponse.fromJson(x))); String verificationFormResponseToJson(List data) => json.encode(List.from(data.map((x) => x.toJson()))); class VerificationFormResponse { String? type; String? label; String? options; VerificationFormResponse({ this.type, this.label, this.options, }); factory VerificationFormResponse.fromJson(Map json) => VerificationFormResponse( type: json["type"], label: json["label"], options: json["options"], ); Map toJson() => { "type": type, "label": label, "options": options, }; }