toJson method
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,
};
}