toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final actions = this.actions;
  final notifyConfiguration = this.notifyConfiguration;
  return {
    'Actions': actions,
    if (notifyConfiguration != null)
      'NotifyConfiguration': notifyConfiguration,
  };
}