flutter_profile/lib/src/widgets/profile/profile_style.dart

10 lines
194 B
Dart
Raw Normal View History

2022-08-26 15:31:42 +02:00
import 'package:profile/src/widgets/avatar/avatar_style.dart';
class ProfileStyle {
const ProfileStyle({
this.avatarStyle = const AvatarStyle(),
});
final AvatarStyle avatarStyle;
}