DebugLog class Null safety

A memento of a calculator state, plus the keystrokes after the state was captured. It's meant to be a tool to facilitate bug reports.

Constructors

DebugLog(Model<ProgramOperation> _model)

Properties

hashCode int
The hash code for this object.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

addKey(ProgramOperation key) → void
initModelState() → void
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent 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

fromJson(Map<String, dynamic> json, Model<ProgramOperation> model) DebugLog