Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
sachaarbonel committed Feb 23, 2022
1 parent 83be1a6 commit 3935d53
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion packages/stream_feed/lib/src/client/analytics_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ class StreamAnalytics extends Equatable {

@override
List<Object?> get props => [

secret,
userToken,
userData,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -527,5 +527,5 @@ class GenericFeedBloc<A, Ob, T, Or> extends Equatable {
}

@override
List<Object?> get props => [client, analyticsClient];
List<Object?> get props => [client, analyticsClient];
}
4 changes: 2 additions & 2 deletions packages/stream_feed_flutter_core/lib/src/typedefs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ typedef MediaPreviewBuilder = Widget Function(
{required AttachmentFile file, required MediaType mediaType});

/// {@template enrichedActivity}
///
///
/// A simplified version of [GenericEnrichedActivity], with preset types of:
/// - [User], [String], [String], [String]
///
Expand All @@ -245,7 +245,7 @@ typedef MediaPreviewBuilder = Widget Function(
/// * Ob = [object]
/// * T = [target]
/// * Or = [origin]
///
///
/// {@endtemplate}
typedef EnrichedActivity
= GenericEnrichedActivity<User, String, String, String>;
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ void main() {
final bloc2 = GenericFeedBloc(
client: mockClient2,
);
final bloc3 = GenericFeedBloc(
final bloc3 = GenericFeedBloc(
client: mockClient3,
);

Expand Down

0 comments on commit 3935d53

Please sign in to comment.