struct_annotation 0.0.0-dev.5 copy "struct_annotation: ^0.0.0-dev.5" to clipboard
struct_annotation: ^0.0.0-dev.5 copied to clipboard

Experimental support for data classes in Dart using pkg:macros

struct_annotation #

build pub package License: MIT

🚧 Experimental support for data classes in Dart using macros.

✨ Features #

🪨 const constructors with required, named parameters

🖨️ copyWith with optional, nullable, named parameters

toString for an improved string representation

☯️ operator== and hashCode for value equality

🧑‍💻 Example #

import 'package:struct_annotation/struct_annotation.dart';

@Struct()
class Person {
  final String name;
}

void main() {
  // 🪨 Create a const instance with required, name parameters.
  const dash = Person(name: 'Dash');

  // 🖨️ Create copies of your object.
  final sparky = dash.copyWith(name: () => 'Sparky');

  // ✨ Human-readable string representation.
  print(dash); // Person(name: Dash)
  print(sparky); // Person(name: Sparky)

  // ☯️ Value equality comparisons.
  print(dash == dash.copyWith()); // true
  print(dash == sparky); // false
}

🚀 Quick Start #

  1. Switch to the Flutter master channel flutter channel master

  2. Add package:struct_annotation to your pubspec.yaml

    dependencies:
      struct_annotation: ^0.0.0-dev.1
    
  3. Enable experimental macros in analysis_options.yaml

    analyzer:
      enable-experiment:
        - macros
    
  4. Use the @Struct annotation (see above example).

  5. Run it

    dart --enable-experiment=macros run main.dart
    

*Requires Dart SDK >= 3.5.0-152.0.dev

11
likes
140
pub points
0%
popularity

Publisher

verified publisherbloc-dev.com

Experimental support for data classes in Dart using pkg:macros

Repository (GitHub)
View/report issues

Topics

#macros #data-class #struct

Documentation

API reference

License

MIT (license)

Dependencies

collection, macros

More

Packages that depend on struct_annotation