toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (dataStoreConnections != null)
    'dataStoreConnections': dataStoreConnections!,
  if (enabled != null) 'enabled': enabled!,
  if (targetFlow != null) 'targetFlow': targetFlow!,
  if (targetPage != null) 'targetPage': targetPage!,
  if (triggerFulfillment != null) 'triggerFulfillment': triggerFulfillment!,
};