Сергей Паршонок
Сергей Паршонок
Hi! Is it possible to somehow use your solution in the Flutter App? Now I see only the following possibilities: 1. Place your library on a remote server and show...
## Checklist - [ ] Have you added an explanation of what your changes do and why you'd like us to include them? - [ ] Is there an existing...
## Problem Sometimes, the back-end changes the response structure unexpectedly. For example, our app expects this: ```json { "id": "0", "name": "Name" } ``` but we get this instead: ```json...
## Problem If we have a request like this: ```dart @MultiPart() @POST('/api/some/path/') Future requestName({ @Part(name: 'full_name') required String fullName, @Part(name: 'birth_date') required DateTime birthDate, ``` we'll get a `toJson() method...
## Problem Some tests keep failing with such error: ``` `buildLogItems` is not empty. Tests should validate the contents of `buildLogItems` and call `clearBuildLog` before `tearDown`. ``` even after they...
## Problem Cannot launch the project with the following macro: Macro ```dart import 'dart:async'; import 'package:macros/macros.dart'; macro class ExampleMacro implements MethodDeclarationsMacro, MethodDefinitionMacro { const ExampleMacro(); @override FutureOr buildDeclarationsForMethod(MethodDeclaration method, MemberDeclarationBuilder...
## Problem Cannot launch project with macro with `Map` param. Macro ```dart import 'dart:async'; import 'package:macros/macros.dart'; macro class MapEntryExample implements ClassDeclarationsMacro { final Map map; const MapEntryExample(this.map); @override FutureOr buildDeclarationsForClass(...