SeekRequest.fromJson constructor
SeekRequest.fromJson(
- Map json_
Implementation
SeekRequest.fromJson(core.Map json_)
: this(
snapshot: json_.containsKey('snapshot')
? json_['snapshot'] as core.String
: null,
time: json_.containsKey('time') ? json_['time'] as core.String : null,
);