toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final primaryKey = this.primaryKey;
  final properties = this.properties;
  final propertyName = this.propertyName;
  return {
    'primaryKey': ?primaryKey,
    'properties': ?properties,
    'propertyName': ?propertyName,
  };
}