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