QueryModuleAddressRequest.fromJson constructor
Implementation
factory QueryModuleAddressRequest.fromJson(Map<String, dynamic> json) {
return QueryModuleAddressRequest(
name: json.valueAsString<String?>('name', acceptCamelCase: true),
);
}
factory QueryModuleAddressRequest.fromJson(Map<String, dynamic> json) {
return QueryModuleAddressRequest(
name: json.valueAsString<String?>('name', acceptCamelCase: true),
);
}