ReadMemoryResponseBody class

Constructors

ReadMemoryResponseBody({required String address, String? data, int? unreadableBytes})
ReadMemoryResponseBody.fromMap(Map<String, Object?> obj)

Properties

address String
The address of the first byte of data returned. Treated as a hex value if prefixed with 0x, or as a decimal value otherwise.
final
data String?
The bytes read from memory, encoded using base64. If the decoded length of data is less than the requested count in the original readMemory request, and unreadableBytes is zero or omitted, then the client should assume it's reached the end of readable memory.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
unreadableBytes int?
The number of unreadable bytes encountered after the last successfully read byte. This can be used to determine the number of bytes that should be skipped before a subsequent readMemory request succeeds.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object?>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

canParse(Object? obj) bool
fromJson(Map<String, Object?> obj) ReadMemoryResponseBody