CacheAttributes.fromJson constructor

CacheAttributes.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CacheAttributes.fromJson(Map<String, dynamic> json) {
  return CacheAttributes(
    cacheStaleTimeoutInSeconds: json['CacheStaleTimeoutInSeconds'] as int?,
  );
}