toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final sourceIdType = this.sourceIdType;
  final value = this.value;
  return {
    'SourceIdType': sourceIdType.toValue(),
    'Value': value,
  };
}