toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final constraints = this.constraints;
  final customFeatures = this.customFeatures;
  final sqlCode = this.sqlCode;
  return {
    'constraints': ?constraints,
    'customFeatures': ?customFeatures,
    'sqlCode': ?sqlCode,
  };
}