toSmsPhotoInfoData method

SmsPhotoInfoData toSmsPhotoInfoData()

Implementation

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