flutter-woocommerce-app/LabelStoreMax/lib/app/models/bottom_nav_item.dart
2022-01-03 17:58:52 +00:00

20 lines
544 B
Dart

// Label StoreMax
//
// Created by Anthony Gordon.
// 2022, WooSignal Ltd. All rights reserved.
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
import 'package:flutter/material.dart';
class BottomNavItem {
int id;
BottomNavigationBarItem bottomNavigationBarItem;
Widget tabWidget;
BottomNavItem({this.id, this.bottomNavigationBarItem, this.tabWidget});
}