toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deletionProtection = this.deletionProtection;
  final etag = this.etag;
  final name = this.name;
  final query = this.query;
  return {
    'deletionProtection': ?deletionProtection,
    'etag': ?etag,
    'name': ?name,
    'query': ?query,
  };
}