toJson method
Converts the parameter to a JSON-serializable map.
Returns a map that can be serialized to JSON for the API request.
Implementation
@override
Map<String, dynamic> toJson() {
return {
'type': 'date_time',
'date_time': {
'fallback_value': datetime.toIso8601String(),
},
};
}