11 lines
224 B
Dart
11 lines
224 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Category {
|
|
final String name;
|
|
final double amount;
|
|
final Color colorCode;
|
|
final IconData iconCode;
|
|
|
|
Category(this.name, this.amount, this.colorCode, this.iconCode);
|
|
}
|