feat: Add library directive to multiple BLoC and service files for improved organization
This commit is contained in:
@@ -31,6 +31,7 @@
|
||||
/// members: [member1, member2],
|
||||
/// ));
|
||||
/// ```
|
||||
library;
|
||||
import 'dart:async';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:travel_mate/services/error_service.dart';
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
///
|
||||
/// All events extend [GroupEvent] and implement [Equatable] for proper
|
||||
/// equality comparison in the BLoC pattern.
|
||||
library;
|
||||
import 'package:equatable/equatable.dart';
|
||||
import '../../models/group.dart';
|
||||
import '../../models/group_member.dart';
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
///
|
||||
/// All states extend [GroupState] and implement [Equatable] for proper
|
||||
/// equality comparison and state change detection in the BLoC pattern.
|
||||
library;
|
||||
import 'package:equatable/equatable.dart';
|
||||
import '../../models/group.dart';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user