Leonardo Rosa
Leonardo Rosa
Hey folks, I writing a similar package, from here after some weeks I launch first release for Android only. I doing make a skeleton first to launch and open for...
@juliavi @Nei1eveN @GRBurst @sagargpt I did launch first release: https://github.com/LeonardoRosaa/have_app
I starting PR #24 to migrate package to null safety version. Feel free for contribute!!
@mrpharderwijk and @pieromacaluso, it's works for me. Thanks!! Full code: ```js import {registerDecorator, ValidationArguments, ValidationOptions, ValidatorConstraint, ValidatorConstraintInterface} from 'class-validator'; export function Match(property: string, validationOptions?: ValidationOptions) { return (object: any, propertyName:...
@2shrestha22 You can show an example of this feature?
This problem could association at #46. PR to resolve problem: #47.
For one reason the Dart language did pass the state reference instead of the value. According to the example above, you can do something like this: ``` final test =...
> Thank you for the response @LeonardoRosaa > > You're absolutely right. I have been using `[...?state]` which is more or less similar to `List.from(state)` to circumvent this problem I...
Honestly, I don't know why yet. I believe it may be a bug. I did some tests in the [DartPad](https://dartpad.dev/?) and this works as well. ```dart void main() { final...
This could be too expensive to do and also I think there are Dart limitations. However, you can use the `@protected` annotation: ```dart class MyClass extends Equatable { const MyClass();...