11 lines
169 B
Dart
11 lines
169 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
typedef Category = ({
|
|
String id,
|
|
String name,
|
|
int count,
|
|
IconData icon,
|
|
Color iconColor,
|
|
Color backgroundColor,
|
|
});
|