diff --git a/mobile/lib/models/smart_memory.dart b/mobile/lib/models/smart_memory.dart index 0c16b64c16..fa5f2524a7 100644 --- a/mobile/lib/models/smart_memory.dart +++ b/mobile/lib/models/smart_memory.dart @@ -17,10 +17,10 @@ abstract class SmartMemory { SmartMemory( this.memories, this.type, { - this.name, + name, this.firstCreationTime, this.lastCreationTime, - }); + }) : name = name != null ? name + "(I)" : null; int averageCreationTime() { if (firstCreationTime != null && lastCreationTime != null) {