mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
34 lines
873 B
Dart
34 lines
873 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
@immutable
|
|
class UserProfile {
|
|
final String pubkey;
|
|
final String? displayName;
|
|
final String? avatarUrl;
|
|
final String? about;
|
|
|
|
const UserProfile({
|
|
required this.pubkey,
|
|
this.displayName,
|
|
this.avatarUrl,
|
|
this.about,
|
|
});
|
|
|
|
factory UserProfile.fromJson(Map<String, dynamic> json) => UserProfile(
|
|
pubkey: json['pubkey'] as String,
|
|
displayName: json['display_name'] as String?,
|
|
avatarUrl: json['avatar_url'] as String?,
|
|
about: json['about'] as String?,
|
|
);
|
|
|
|
/// Short label: display name, or first 8 chars of pubkey.
|
|
String get label =>
|
|
displayName ??
|
|
'${pubkey.length >= 8 ? pubkey.substring(0, 8) : pubkey}...';
|
|
|
|
/// First letter for fallback avatar.
|
|
String get initial =>
|
|
(displayName?.isNotEmpty == true ? displayName! : pubkey)[0]
|
|
.toUpperCase();
|
|
}
|