mirror of
https://github.com/foss42/apidash.git
synced 2025-12-01 18:28:25 +08:00
16 lines
553 B
Dart
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);
|
|
}
|
|
}
|