toJson method

Map<String, dynamic> toJson()

Implementation

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