toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'delay_id': delayId,
    'room_id': roomId,
    'type': type,
    'state_key': stateKey,
    'delay': delay,
    'running_since': runningSince,
    'content': content,
  };
}