convertToMap method
Implementation
Map<String, dynamic> convertToMap() {
var map = super.convertToMap();
map["controllerStyle"] = controllerStyle;
map["textColor"] = textColor;
map["unplayedColor"] = unplayedColor;
map["playedColor"] = playedColor;
map["bufferedColor"] = bufferedColor;
map["tintColor"] = tintColor;
map["muteOffImageDrawable"] = muteOffImageDrawable;
map["muteOnImageDrawable"] = muteOnImageDrawable;
return map;
}