latestMealRecordImageUrl property

String latestMealRecordImageUrl

最新の食事記録のimageURLを取得する

Implementation

String get latestMealRecordImageUrl {
  if (mealRecords.isEmpty) {
    return '';
  }
  final latestMealRecord = sortedMealRecords.first;
  return latestMealRecord.imageUrl;
}