toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (config != null) 'config': config!,
      if (createTime != null) 'createTime': createTime!,
      if (displayName != null) 'displayName': displayName!,
      if (etag != null) 'etag': etag!,
      if (name != null) 'name': name!,
      if (nodeCount != null) 'nodeCount': nodeCount!,
      if (processingUnits != null) 'processingUnits': processingUnits!,
      if (referencingBackups != null)
        'referencingBackups': referencingBackups!,
      if (referencingDatabases != null)
        'referencingDatabases': referencingDatabases!,
      if (state != null) 'state': state!,
      if (updateTime != null) 'updateTime': updateTime!,
    };