toSmsPhotoInfoData method
Implementation
SmsPhotoInfoData toSmsPhotoInfoData() {
Photo? photo = this;
if (photo != null) {
return SmsPhotoInfoData(
bytes: photo.bytes,
);
}
return SmsPhotoInfoData(
bytes: Uint8List.fromList([]),
);
}