decode static method
Implementation
static TrackData decode(Object result) {
result as List<Object?>;
return TrackData(
id: result[0] as String?,
type: result[1] as TrackType?,
language: result[2] as String?,
label: result[3] as String?,
bitrate: result[4] as int?,
width: result[5] as int?,
height: result[6] as int?,
);
}