toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final acceptedOutputModes = this.acceptedOutputModes;
  final historyLength = this.historyLength;
  final returnImmediately = this.returnImmediately;
  final taskPushNotificationConfig = this.taskPushNotificationConfig;
  return {
    'acceptedOutputModes': ?acceptedOutputModes,
    'historyLength': ?historyLength,
    'returnImmediately': ?returnImmediately,
    'taskPushNotificationConfig': ?taskPushNotificationConfig,
  };
}