Claudius Kienle

Results 6 comments of Claudius Kienle

I added following decorator. It's super ugly, but parses the form fields and generates the correct documentation: ```py def multipart_arguments(self, schema, *, content_type=None, required=True, description=None, example=None, examples=None, **kwargs): # At...

@DineshGuptaa You're missing a parameter in the `post()` method that will contain the data of the multipart schema. So you have to replace ```python def post(self): ``` with ```python def...

I also developed a solution that is based on the code of @dan1229 . My code doesn't a Dialog to show the braintree flow but a standard widget. It is...

I would really appreciate this feature!

If anyone is looking for a way to also map the `value` of `AsyncLoading`, following code worked for me: ```dart AsyncValue mapData(R Function(T) mapFunction) { return when( data: (data) =>...