damn_nullable 0.0.2
damn_nullable: ^0.0.2 copied to clipboard
A tiny Dart utility that fixes the classic copyWith problem: distinguishing between "no update" and "update to null". Use DamnNullable<T> to explicitly set nullable fields inside copyWith. Works wit [...]
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add damn_nullableWith Flutter:
$ flutter pub add damn_nullableThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
damn_nullable: ^0.0.2Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:damn_nullable/damn_nullable.dart';