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