toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (customFeatures != null) 'customFeatures': customFeatures!,
      if (name != null) 'name': name!,
      if (sqlCode != null) 'sqlCode': sqlCode!,
      if (triggerType != null) 'triggerType': triggerType!,
      if (triggeringEvents != null) 'triggeringEvents': triggeringEvents!,
    };