show_augmentation 0.1.0-5.dev copy "show_augmentation: ^0.1.0-5.dev" to clipboard
show_augmentation: ^0.1.0-5.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
0
pub points
18%
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

License

unknown (license)

Dependencies

args, lsp_client

More

Packages that depend on show_augmentation