toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clientStatus = this.clientStatus;
  final configStatus = this.configStatus;
  final errorState = this.errorState;
  final isStaticResource = this.isStaticResource;
  final lastUpdated = this.lastUpdated;
  final name = this.name;
  final typeUrl = this.typeUrl;
  final versionInfo = this.versionInfo;
  final xdsConfig = this.xdsConfig;
  return {
    'clientStatus': ?clientStatus,
    'configStatus': ?configStatus,
    'errorState': ?errorState,
    'isStaticResource': ?isStaticResource,
    'lastUpdated': ?lastUpdated,
    'name': ?name,
    'typeUrl': ?typeUrl,
    'versionInfo': ?versionInfo,
    'xdsConfig': ?xdsConfig,
  };
}