QueryLastEventByAddrRequest.fromJson constructor

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

Implementation

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