toJson method

Map<String, dynamic> toJson()

Saves current CPU flags to a Map

Implementation

Map<String, dynamic> toJson() {
  return {
    'S': S,
    'Z': Z,
    'Y': Y,
    'H': H,
    'X': X,
    'P': P,
    'N': N,
    'C': C,
  };
}