cache property
URLCache?
get
cache
The URLCache used to cache the results of URLSessionTasks.
A value of nil indicates that no cache will be used.
Implementation
URLCache? get cache =>
_nsObject.URLCache == null ? null : URLCache._(_nsObject.URLCache!);
set
cache
(URLCache? cache)
Implementation
set cache(URLCache? cache) => _nsObject.URLCache = cache?._nsObject;