mirror of
https://github.com/Iconica-Development/flutter_profile.git
synced 2025-05-18 16:53:45 +02:00
26 lines
500 B
Dart
26 lines
500 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:profile/profile.dart';
|
||
|
|
||
|
class TestProfileService extends ProfileService {
|
||
|
TestProfileService();
|
||
|
|
||
|
@override
|
||
|
void deleteProfile() {
|
||
|
super.deleteProfile();
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
void editProfile<T extends ProfileData>(
|
||
|
User<ProfileData> user,
|
||
|
String key,
|
||
|
String value,
|
||
|
) {
|
||
|
super.editProfile(user, key, value);
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Future<void> uploadImage(BuildContext context) async {
|
||
|
super.uploadImage(context);
|
||
|
}
|
||
|
}
|