Files
flutter/test_data/profile.dart
Roland Geider a977d4ec48 Refactor add_exercise_screen.dart
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
2023-02-07 20:30:09 +01:00

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',
);