toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final autoClose = this.autoClose;
  final notificationChannelStrategy = this.notificationChannelStrategy;
  final notificationPrompts = this.notificationPrompts;
  final notificationRateLimit = this.notificationRateLimit;
  return {
    'autoClose': ?autoClose,
    'notificationChannelStrategy': ?notificationChannelStrategy,
    'notificationPrompts': ?notificationPrompts,
    'notificationRateLimit': ?notificationRateLimit,
  };
}