VimeoSource.fromJson constructor
VimeoSource.fromJson({
- required bool isLive,
- required dynamic json,
Implementation
factory VimeoSource.fromJson({required bool isLive, required dynamic json}) {
return VimeoSource(
height: json['height'],
width: json['width'],
fps: json['fps'],
url: Uri.parse(json['url']),
);
}