11 lines
279 B
Dart
11 lines
279 B
Dart
import 'package:flutter/cupertino.dart';
|
|
|
|
class StateInfo {
|
|
IconData icon;
|
|
Color color;
|
|
String title;
|
|
String subtitle;
|
|
String description;
|
|
|
|
StateInfo({required this.icon, required this.color, required this.title, required this.subtitle, required this.description});
|
|
} |