You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
354 B
11 lines
354 B
import 'package:smartfit_app_mobile/modele/api/i_data_strategy.dart';
|
|
import 'package:smartfit_app_mobile/modele/api/request_api.dart';
|
|
|
|
class ProfileUtil {
|
|
final IDataStrategy _dataStrategy = RequestApi();
|
|
|
|
void modifyDataUser(String token, String attribut, String newUsername) {
|
|
_dataStrategy.modifAttribut(token, attribut, newUsername);
|
|
}
|
|
}
|