QueryGetNextPacketSequenceResponse.fromJson constructor

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

Implementation

factory QueryGetNextPacketSequenceResponse.fromJson(
  Map<String, dynamic> json,
) {
  return QueryGetNextPacketSequenceResponse(
    sequence: json.valueAsBigInt<BigInt?>('sequence', acceptCamelCase: true),
  );
}