toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attributes = this.attributes;
  final flags = this.flags;
  final resources = this.resources;
  final serviceConfigId = this.serviceConfigId;
  return {
    'attributes': ?attributes,
    'flags': ?flags,
    'resources': ?resources,
    'serviceConfigId': ?serviceConfigId,
  };
}