BackendServiceHttpCookie.fromJson constructor
BackendServiceHttpCookie.fromJson(
- Map json_
Implementation
BackendServiceHttpCookie.fromJson(core.Map json_)
: this(
name: json_['name'] as core.String?,
path: json_['path'] as core.String?,
ttl: json_.containsKey('ttl')
? Duration.fromJson(
json_['ttl'] as core.Map<core.String, core.dynamic>)
: null,
);