Move things from tabs, add me view

This commit is contained in:
2026-01-20 17:52:54 +01:00
parent 4fc8570d66
commit 7416f7c29b
5 changed files with 453 additions and 21 deletions

View File

@@ -2,11 +2,13 @@ class StaticTalkgroup {
final String? talkgroup;
final String? repeaterId;
final String? slot;
final int? timeout;
StaticTalkgroup({
this.talkgroup,
this.repeaterId,
this.slot,
this.timeout,
});
factory StaticTalkgroup.fromJson(Map<String, dynamic> json) {
@@ -14,6 +16,7 @@ class StaticTalkgroup {
talkgroup: json['talkgroup']?.toString(),
repeaterId: json['repeaterId']?.toString(),
slot: json['slot']?.toString(),
timeout: json['timeout'] as int?,
);
}
@@ -22,6 +25,7 @@ class StaticTalkgroup {
'talkgroup': talkgroup,
'repeaterId': repeaterId,
'slot': slot,
'timeout': timeout,
};
}