20 lines
389 B
Dart
20 lines
389 B
Dart
import 'package:azlistview/azlistview.dart';
|
|
|
|
class ContactInfo extends ISuspensionBean {
|
|
final int id;
|
|
final String name;
|
|
final String avatar;
|
|
String? tagIndex;
|
|
String? namePinyin;
|
|
|
|
ContactInfo({
|
|
required this.id,
|
|
required this.name,
|
|
required this.avatar,
|
|
this.tagIndex,
|
|
this.namePinyin,
|
|
});
|
|
|
|
@override
|
|
String getSuspensionTag() => tagIndex ?? '#';
|
|
} |