toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final draftEntity = this.draftEntity;
  final draftType = this.draftType;
  final mappingLog = this.mappingLog;
  final sourceEntity = this.sourceEntity;
  final sourceType = this.sourceType;
  return {
    'draftEntity': ?draftEntity,
    'draftType': ?draftType,
    'mappingLog': ?mappingLog,
    'sourceEntity': ?sourceEntity,
    'sourceType': ?sourceType,
  };
}