show_augmentation 0.1.0-8.dev copy "show_augmentation: ^0.1.0-8.dev" to clipboard
show_augmentation: ^0.1.0-8.dev copied to clipboard

Shows augmentation code generated by macros for a given source file.

example/lib/main.dart

import 'hello_macro.dart';

@Hello()
class User {
  const User({
    required this.age,
    required this.name,
    required this.username,
  });

  final int? age;
  final String name;
  final String username;
}

void main() {
  const user = User(
    age: 5,
    name: 'Roger',
    username: 'roger1337',
  );
  user.hello();
}
2
likes
160
pub points
17%
popularity

Publisher

verified publisherainkin.com

Shows augmentation code generated by macros for a given source file.

Repository (GitHub)
View/report issues

Topics

#cli #macros #debug

Documentation

API reference

License

MIT-0 (license)

Dependencies

args, lsp_client

More

Packages that depend on show_augmentation