mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
Use the is_trustworthy flag from the server, which also takes the account's age into account. The widgets in the screen are split so it's easier to test and read
9 lines
180 B
Dart
9 lines
180 B
Dart
import 'package:wger/models/user/profile.dart';
|
|
|
|
final tProfile1 = Profile(
|
|
username: 'super root',
|
|
emailVerified: true,
|
|
isTrustworthy: true,
|
|
email: 'admin@google.com',
|
|
);
|