skills/flutter-bloc-development/examples/earnings/earnings.dart

13 lines
406 B
Dart

// Example: Earnings Feature - Barrel File
// Path: lib/earnings/earnings.dart
//
// This barrel file provides a single import for the entire earnings feature.
// Consumers can import everything with:
// import 'package:app/earnings/earnings.dart';
export 'bloc/earnings_bloc.dart';
export 'bloc/earnings_event.dart';
export 'bloc/earnings_state.dart';
export 'data/data.dart';
export 'view/view.dart';