toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final details = this.details;
  final isPresent = this.isPresent;
  final sapValidationType = this.sapValidationType;
  return {
    'details': ?details,
    'isPresent': ?isPresent,
    'sapValidationType': ?sapValidationType,
  };
}