toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final consentList = this.consentList;
  final dataId = this.dataId;
  final requestAttributes = this.requestAttributes;
  final responseView = this.responseView;
  return {
    'consentList': ?consentList,
    'dataId': ?dataId,
    'requestAttributes': ?requestAttributes,
    'responseView': ?responseView,
  };
}