location has been enabled in addition to sending the domain
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
class ThemeModel {
|
||||
final String name;
|
||||
final String logo; // filename or url
|
||||
final String logo;
|
||||
final String logoUrl;
|
||||
|
||||
const ThemeModel({required this.name, required this.logo});
|
||||
const ThemeModel({
|
||||
required this.name,
|
||||
required this.logo,
|
||||
required this.logoUrl,
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user