firstMedia method
The first media of the element if exists, null
otherwise.
Implementation
MBMedia? firstMedia() {
if (media.isNotEmpty) {
return media.first;
}
return null;
}
The first media of the element if exists, null
otherwise.
MBMedia? firstMedia() {
if (media.isNotEmpty) {
return media.first;
}
return null;
}