toJson method
Converts a Lifecycle instance to JSON data.
Implementation
Map<String, Object> toJson() {
final jsonData = <String, Object>{};
final tempPostStart = postStart;
final tempPreStop = preStop;
if (tempPostStart != null) {
jsonData['postStart'] = tempPostStart.toJson();
}
if (tempPreStop != null) {
jsonData['preStop'] = tempPreStop.toJson();
}
return jsonData;
}