mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-05-01 09:40:30 -05:00
6 lines
142 B
Dart
6 lines
142 B
Dart
import 'package:phylum/libphylum/db/db.dart';
|
|
|
|
extension UserDisplayName on User {
|
|
String get displayName => name.isEmpty ? email : name;
|
|
}
|