Formatting

This commit is contained in:
Sarah Jamie Lewis 2024-01-02 10:53:15 -08:00
parent d6d064b804
commit 1d70adb595
2 changed files with 1 additions and 2 deletions

View File

@ -233,7 +233,6 @@ class ContactInfoState extends ChangeNotifier {
return this._newMarkerMsgIndex; return this._newMarkerMsgIndex;
} }
int get totalMessages => this._totalMessages;
int get totalMessages => this._totalMessages; int get totalMessages => this._totalMessages;
set totalMessages(int newVal) { set totalMessages(int newVal) {

View File

@ -139,6 +139,7 @@ class YmlTheme extends OpaqueThemeType {
get chatImage => getImage("chatImage") ?? fallbackTheme.chatImage; get chatImage => getImage("chatImage") ?? fallbackTheme.chatImage;
ImageProvider loadImage(String key) { ImageProvider loadImage(String key) {
File f = File(key); File f = File(key);
if (f.existsSync()) { if (f.existsSync()) {
@ -147,5 +148,4 @@ class YmlTheme extends OpaqueThemeType {
return AssetImage(key); return AssetImage(key);
} }
} }
} }