mirror of
https://github.com/Iconica-Development/flutter_profile.git
synced 2025-05-19 01:03:45 +02:00
10 lines
194 B
Dart
10 lines
194 B
Dart
|
import 'package:profile/src/widgets/avatar/avatar_style.dart';
|
||
|
|
||
|
class ProfileStyle {
|
||
|
const ProfileStyle({
|
||
|
this.avatarStyle = const AvatarStyle(),
|
||
|
});
|
||
|
|
||
|
final AvatarStyle avatarStyle;
|
||
|
}
|