toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final transformType = this.transformType;
  final findMatchesParameters = this.findMatchesParameters;
  return {
    'TransformType': transformType.toValue(),
    if (findMatchesParameters != null)
      'FindMatchesParameters': findMatchesParameters,
  };
}