14 lines
349 B
Dart
14 lines
349 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
|
|
part 'profile_decoration.freezed.dart';
|
|
|
|
@freezed
|
|
sealed class ProfileDecoration with _$ProfileDecoration {
|
|
const factory ProfileDecoration({
|
|
required String text,
|
|
required Color color,
|
|
Color? textColor,
|
|
}) = _ProfileDecoration;
|
|
}
|