toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (draftEntity != null) 'draftEntity': draftEntity!,
      if (draftType != null) 'draftType': draftType!,
      if (mappingLog != null) 'mappingLog': mappingLog!,
      if (sourceEntity != null) 'sourceEntity': sourceEntity!,
      if (sourceType != null) 'sourceType': sourceType!,
    };