ReadMemoryArguments class

Arguments for readMemory request.

Inheritance

Constructors

ReadMemoryArguments({required int count, required String memoryReference, int? offset})
ReadMemoryArguments.fromMap(Map<String, Object?> obj)

Properties

count int
Number of bytes to read at the specified location and offset.
final
hashCode int
The hash code for this object.
no setterinherited
memoryReference String
Memory reference to the base location from which data should be read.
final
offset int?
Offset (in bytes) to be applied to the reference location before reading data. Can be negative.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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
override
fromJson(Map<String, Object?> obj) ReadMemoryArguments