Sat Mandir S. Khalsa
Sat Mandir S. Khalsa
https://medium.com/@karlwhiteprivate/flutter-facebook-sign-in-with-firebase-in-2020-66556a8c3586
@davideast Any workaround for this?
Thanks @ryanheise. Your documentation changes clarify how the shuffle method works when an AudioSource has already been set. However, it's still unclear to me how to "pre-shuffle" an audio source...
@ryanheise I implemented something almost identical: ```dart class CustomShuffleOrder extends DefaultShuffleOrder { bool shuffleAll; CustomShuffleOrder({this.shuffleAll = false}); @override void shuffle({int initialIndex}) { if (shuffleAll) { super.shuffle(); } else { super.shuffle(initialIndex:...
@comigor awesome! Any ideas on how to implement this? I'm still a novice when it comes to code gen with build_runner. It seems that the GraphQLQuery class would need to...
@comigor it seems `printNode` & `parseString` referenced by @klavs will work for `DocumentNode`. However, it's still unclear to me how best to handle the `parse` function. We would need the...
> you'll need to make your user manually configure your client with a map of operation name to output object function Can't we just have the generator generate the GraphqQLQuery...
> But how are you going to persist and (more importantly) retrieve those queries? You could generate the abstract `GraphQLQuery` class and include it in the generated result. It would...
@comigor sure, that makes sense. For reference, built_value adds a ["discriminator"](https://github.com/google/built_value.dart/blob/master/example/lib/example.dart#L125) that stores a string reference to the class name when serializing. This allows for deserializing even when you don't...
@comigor any progress on middleware?