Karlo Verde

Results 13 issues of Karlo Verde

Currently, this implementation is valid. ```dart @freezed class Shape with _$Shape { const Shape._(); const factory Shape.square({ required double side, }) = Square; const factory Shape.circle({ required double radius, })...

enhancement
needs triage

# Description The current JSON format is not really dev-friendly when debugging. The stack trace gets trimmed and, thus, it is almost useless. # Alternative I was thinking of a...

## Details Retrieve de default SDK executable by checking the available runnable files for both Dart and Flutter, keeping their priority order according to the environment, and filtering them as...

## Bug description Hey there ๐Ÿ‘‹๐Ÿผ ! I found an interesting bug when using `freezed` for classes with members with default values. If I create a const instance of a...

bug

### Is there an existing issue for this? - [X] I have searched the existing issues. ### Version 3.0.1 ### Description When a command is run for a set of...

bug
Needs: Triage

Hi ๐Ÿ‘‹๐Ÿผ I am trying to test an `AutoLeadingButton` as follows: ```dart // Using `mocktail` class MockStackRouter extends Mock implements StackRouter {} testWidgets( 'AutoLeadingButton test', (tester) async { final stackRouter...

### Steps to Reproduce When running tests on Windows, a weird exception is triggered after the tests suit finishes. The actual tests are properly executed and checked. It is the...

Hey there! First, thanks for this useful package!!! I am trying to display a custom widget with the error details of a `FormArray` to which a validator has been added...

# Description Given the following classes: ```dart class Dog { final String breed; final int age; final String name; Dog(this.breed, this.age, this.name); } class DogModel { final String breed; final...

## Details ### Case 1 - command invoked through `dart pub global run` When running the following command: ```sh dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --report-on=lib ``` The...