getClassNameForObject method

  1. @override
String? getClassNameForObject(
  1. Object data
)
override

Get the className for the provided object.

Implementation

@override
String? getClassNameForObject(Object data) {
  if (data is _i2.AuthKey) {
    return 'AuthKey';
  }
  if (data is _i3.CacheInfo) {
    return 'CacheInfo';
  }
  if (data is _i4.CachesInfo) {
    return 'CachesInfo';
  }
  if (data is _i5.CloudStorageEntry) {
    return 'CloudStorageEntry';
  }
  if (data is _i6.CloudStorageDirectUploadEntry) {
    return 'CloudStorageDirectUploadEntry';
  }
  if (data is _i7.ClusterInfo) {
    return 'ClusterInfo';
  }
  if (data is _i8.ClusterServerInfo) {
    return 'ClusterServerInfo';
  }
  if (data is _i9.DistributedCacheEntry) {
    return 'DistributedCacheEntry';
  }
  if (data is _i10.FutureCallEntry) {
    return 'FutureCallEntry';
  }
  if (data is _i11.LogEntry) {
    return 'LogEntry';
  }
  if (data is _i12.LogLevel) {
    return 'LogLevel';
  }
  if (data is _i13.LogResult) {
    return 'LogResult';
  }
  if (data is _i14.LogSettings) {
    return 'LogSettings';
  }
  if (data is _i15.LogSettingsOverride) {
    return 'LogSettingsOverride';
  }
  if (data is _i16.MessageLogEntry) {
    return 'MessageLogEntry';
  }
  if (data is _i17.MethodInfo) {
    return 'MethodInfo';
  }
  if (data is _i18.QueryLogEntry) {
    return 'QueryLogEntry';
  }
  if (data is _i19.ReadWriteTestEntry) {
    return 'ReadWriteTestEntry';
  }
  if (data is _i20.RuntimeSettings) {
    return 'RuntimeSettings';
  }
  if (data is _i21.ServerHealthConnectionInfo) {
    return 'ServerHealthConnectionInfo';
  }
  if (data is _i22.ServerHealthMetric) {
    return 'ServerHealthMetric';
  }
  if (data is _i23.ServerHealthResult) {
    return 'ServerHealthResult';
  }
  if (data is _i24.SessionLogEntry) {
    return 'SessionLogEntry';
  }
  if (data is _i25.SessionLogFilter) {
    return 'SessionLogFilter';
  }
  if (data is _i26.SessionLogInfo) {
    return 'SessionLogInfo';
  }
  if (data is _i27.SessionLogResult) {
    return 'SessionLogResult';
  }
  return super.getClassNameForObject(data);
}