toJson method
Converts to JSON.
Implementation
@override
Map<String, dynamic> toJson() => {
'type': type,
if (createResponse != null) 'create_response': createResponse,
if (eagerness != null) 'eagerness': eagerness!.toJson(),
if (interruptResponse != null) 'interrupt_response': interruptResponse,
};