SeekRequest.fromJson constructor

SeekRequest.fromJson(
  1. 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,
      );