Files
apidash/lib/dashbot/core/utils/dashbot_icons.dart
2025-09-02 11:57:31 +05:30

16 lines
553 B
Dart

import 'package:flutter/widgets.dart';
class DashbotIcons {
DashbotIcons._();
static String get dashbotIcon1 => 'assets/dashbot/dashbot_icon_1.png';
static String get dashbotIcon2 => 'assets/dashbot/dashbot_icon_2.png';
static Image getDashbotIcon1({double? width, double? height, BoxFit? fit}) {
return Image.asset(dashbotIcon1, width: width, height: height, fit: fit);
}
static Image getDashbotIcon2({double? width, double? height, BoxFit? fit}) {
return Image.asset(dashbotIcon2, width: width, height: height, fit: fit);
}
}