toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final displayName = this.displayName;
  final id = this.id;
  final triggerMode = this.triggerMode;
  return {
    'description': ?description,
    'displayName': ?displayName,
    'id': ?id,
    'triggerMode': ?triggerMode,
  };
}