bytedesk-flutter/bytedesk_kefu/lib/ui/profile/provider/user_profile_provider.dart

11 lines
234 B

import 'package:flutter/material.dart';
class UserProfileProvider extends StatelessWidget {
const UserProfileProvider({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container();
}
}