toChromeCastMap method

Map toChromeCastMap()

Implementation

Map toChromeCastMap() {
  return {
    'type': 'LOAD',
    'autoPlay': autoPlay,
    'currentTime': position,
    'playbackRate': playbackRate,
    'activeTracks': [],
    'media': {
      'contentId': contentId,
      'contentType': contentType,
      'images': images,
      'title': title,
      'streamType': 'BUFFERED',
    }
  };
}