JideGuru / FlutterEbookApp

A simple Flutter app to Read and Download eBooks.
https://openleaf.codemagic.app
Apache License 2.0
3.03k stars 859 forks source link

build error in dart:3.0.5 #115

Closed jeffreyxuworld closed 1 year ago

jeffreyxuworld commented 1 year ago

typedef BookRepositoryData = ({CategoryFeed? feed, HttpFailure? failure}); // tip error typedef HomeFeedData = ({CategoryFeed popularFeed, CategoryFeed recentFeed}); // tip error home_feed_notifier.g.dart -->

/// See also [HomeFeedNotifier].
@ProviderFor(HomeFeedNotifier)
final homeFeedNotifierProvider = AutoDisposeAsyncNotifierProvider<
    HomeFeedNotifier,
    ({CategoryFeed popularFeed, CategoryFeed recentFeed})>.internal(
  HomeFeedNotifier.new,
  name: r'homeFeedNotifierProvider',
  debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
      ? null
      : _$homeFeedNotifierHash,
  dependencies: null,
  allTransitiveDependencies: null,
);

typedef _$HomeFeedNotifier = AutoDisposeAsyncNotifier<
    ({CategoryFeed popularFeed, CategoryFeed recentFeed})>;
// ignore_for_file: unnecessary_raw_strings, subtype_of_sealed_class, invalid_use_of_internal_member, do_not_use_environment, prefer_const_constructors, public_member_api_docs, avoid_private_typedef_functions

build error in dart:3.0.5

JideGuru commented 1 year ago

Where's the error message? can you include that?