QueryModuleAddressRequest.fromJson constructor

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

Implementation

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