├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── build.md │ ├── chore.md │ ├── ci.md │ ├── config.yml │ ├── documentation.md │ ├── feature_request.md │ ├── performance.md │ ├── refactor.md │ ├── revert.md │ ├── style.md │ └── test.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example └── main.dart ├── lib ├── data_class.dart └── src │ ├── _data_class.dart │ ├── constructable_macro.dart │ ├── copyable_macro.dart │ ├── data_macro.dart │ ├── macro_extensions.dart │ └── stringable_macro.dart ├── pubspec.yaml └── test └── src ├── constructable_macro ├── empty_class_test.dart ├── empty_nested_subclass_test.dart ├── empty_subclass_of_named_multi_field_class_test.dart ├── empty_subclass_of_named_single_field_class_test.dart ├── empty_subclass_of_nullable_named_single_field_class_test.dart ├── empty_subclass_of_nullable_optional_positional_single_field_class_test.dart ├── empty_subclass_of_nullable_positional_single_field_class_test.dart ├── empty_subclass_of_optional_positional_single_field_class_test.dart ├── empty_subclass_of_positional_multi_field_class_test.dart ├── empty_subclass_of_positional_single_field_class_test.dart ├── empty_subclass_test.dart ├── generic_single_field_class_test.dart ├── nullable_single_field_class_test.dart ├── single_field_class_test.dart ├── single_field_nested_subclass_of_positional_single_field_class_test.dart ├── single_field_subclass_of_positional_single_field_class_test.dart └── static_field_class_test.dart ├── constructable_macro_test.dart ├── copyable_macro ├── empty_class_test.dart ├── empty_nested_subclass_test.dart ├── empty_subclass_of_named_multi_field_class_test.dart ├── empty_subclass_of_named_single_field_class_test.dart ├── empty_subclass_of_nullable_named_single_field_class_test.dart ├── empty_subclass_of_nullable_optional_positional_single_field_class_test.dart ├── empty_subclass_of_nullable_positional_single_field_class_test.dart ├── empty_subclass_of_optional_positional_single_field_class_test.dart ├── empty_subclass_of_positional_multi_field_class_test.dart ├── empty_subclass_of_positional_single_field_class_test.dart ├── empty_subclass_test.dart ├── generic_single_field_class_test.dart ├── nullable_single_field_class_test.dart ├── single_field_class_test.dart ├── single_field_nested_subclass_of_positional_single_field_class_test.dart ├── single_field_subclass_of_positional_single_field_class_test.dart └── static_field_class_test.dart ├── copyable_macro_test.dart ├── data_macro ├── empty_class_test.dart ├── empty_nested_subclass_test.dart ├── empty_subclass_of_named_multi_field_class_test.dart ├── empty_subclass_of_named_single_field_class_test.dart ├── empty_subclass_of_nullable_named_single_field_class_test.dart ├── empty_subclass_of_nullable_optional_positional_single_field_class_test.dart ├── empty_subclass_of_nullable_positional_single_field_class_test.dart ├── empty_subclass_of_optional_positional_single_field_class_test.dart ├── empty_subclass_of_positional_multi_field_class_test.dart ├── empty_subclass_of_positional_single_field_class_test.dart ├── empty_subclass_test.dart ├── generic_single_field_class_test.dart ├── nullable_single_field_class_test.dart ├── single_field_class_test.dart ├── single_field_nested_subclass_of_positional_single_field_class_test.dart └── single_field_subclass_of_positional_single_field_class_test.dart ├── data_macro_test.dart ├── equatable_macro ├── empty_class_test.dart ├── empty_nested_subclass_test.dart ├── empty_subclass_of_named_multi_field_class_test.dart ├── empty_subclass_of_named_single_field_class_test.dart ├── empty_subclass_of_nullable_named_single_field_class_test.dart ├── empty_subclass_of_nullable_optional_positional_single_field_class_test.dart ├── empty_subclass_of_nullable_positional_single_field_class_test.dart ├── empty_subclass_of_optional_positional_single_field_class_test.dart ├── empty_subclass_of_positional_multi_field_class_test.dart ├── empty_subclass_of_positional_single_field_class_test.dart ├── empty_subclass_test.dart ├── generic_single_field_class_test.dart ├── nullable_single_field_class_test.dart ├── single_field_class_test.dart ├── single_field_nested_subclass_of_positional_single_field_class_test.dart ├── single_field_subclass_of_positional_single_field_class_test.dart └── static_field_class_test.dart ├── equatable_macro_test.dart ├── main.dart ├── stringable_macro ├── empty_class_test.dart ├── empty_nested_subclass_test.dart ├── empty_subclass_of_named_multi_field_class_test.dart ├── empty_subclass_of_named_single_field_class_test.dart ├── empty_subclass_of_nullable_named_single_field_class_test.dart ├── empty_subclass_of_nullable_optional_positional_single_field_class_test.dart ├── empty_subclass_of_nullable_positional_single_field_class_test.dart ├── empty_subclass_of_optional_positional_single_field_class_test.dart ├── empty_subclass_of_positional_multi_field_class_test.dart ├── empty_subclass_of_positional_single_field_class_test.dart ├── empty_subclass_test.dart ├── generic_single_field_class_test.dart ├── nullable_single_field_class_test.dart ├── single_field_class_test.dart ├── single_field_nested_subclass_of_positional_single_field_class_test.dart ├── single_field_subclass_of_positional_single_field_class_test.dart └── static_field_class_test.dart └── stringable_macro_test.dart /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/ISSUE_TEMPLATE/build.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/chore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/ISSUE_TEMPLATE/chore.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/ISSUE_TEMPLATE/ci.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/ISSUE_TEMPLATE/performance.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/ISSUE_TEMPLATE/refactor.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/revert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/ISSUE_TEMPLATE/revert.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/ISSUE_TEMPLATE/style.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/ISSUE_TEMPLATE/test.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | analyzer: 2 | enable-experiment: 3 | - macros 4 | -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/example/main.dart -------------------------------------------------------------------------------- /lib/data_class.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/lib/data_class.dart -------------------------------------------------------------------------------- /lib/src/_data_class.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/lib/src/_data_class.dart -------------------------------------------------------------------------------- /lib/src/constructable_macro.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/lib/src/constructable_macro.dart -------------------------------------------------------------------------------- /lib/src/copyable_macro.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/lib/src/copyable_macro.dart -------------------------------------------------------------------------------- /lib/src/data_macro.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/lib/src/data_macro.dart -------------------------------------------------------------------------------- /lib/src/macro_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/lib/src/macro_extensions.dart -------------------------------------------------------------------------------- /lib/src/stringable_macro.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/lib/src/stringable_macro.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/src/constructable_macro/empty_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/empty_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/empty_nested_subclass_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/empty_nested_subclass_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/empty_subclass_of_named_multi_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/empty_subclass_of_named_multi_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/empty_subclass_of_named_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/empty_subclass_of_named_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/empty_subclass_of_nullable_named_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/empty_subclass_of_nullable_named_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/empty_subclass_of_nullable_optional_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/empty_subclass_of_nullable_optional_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/empty_subclass_of_nullable_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/empty_subclass_of_nullable_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/empty_subclass_of_optional_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/empty_subclass_of_optional_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/empty_subclass_of_positional_multi_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/empty_subclass_of_positional_multi_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/empty_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/empty_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/empty_subclass_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/empty_subclass_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/generic_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/generic_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/nullable_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/nullable_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/single_field_nested_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/single_field_nested_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/single_field_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/single_field_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro/static_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro/static_field_class_test.dart -------------------------------------------------------------------------------- /test/src/constructable_macro_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/constructable_macro_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/empty_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/empty_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/empty_nested_subclass_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/empty_nested_subclass_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/empty_subclass_of_named_multi_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/empty_subclass_of_named_multi_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/empty_subclass_of_named_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/empty_subclass_of_named_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/empty_subclass_of_nullable_named_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/empty_subclass_of_nullable_named_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/empty_subclass_of_nullable_optional_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/empty_subclass_of_nullable_optional_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/empty_subclass_of_nullable_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/empty_subclass_of_nullable_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/empty_subclass_of_optional_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/empty_subclass_of_optional_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/empty_subclass_of_positional_multi_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/empty_subclass_of_positional_multi_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/empty_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/empty_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/empty_subclass_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/empty_subclass_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/generic_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/generic_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/nullable_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/nullable_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/single_field_nested_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/single_field_nested_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/single_field_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/single_field_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro/static_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro/static_field_class_test.dart -------------------------------------------------------------------------------- /test/src/copyable_macro_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/copyable_macro_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/empty_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/empty_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/empty_nested_subclass_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/empty_nested_subclass_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/empty_subclass_of_named_multi_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/empty_subclass_of_named_multi_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/empty_subclass_of_named_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/empty_subclass_of_named_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/empty_subclass_of_nullable_named_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/empty_subclass_of_nullable_named_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/empty_subclass_of_nullable_optional_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/empty_subclass_of_nullable_optional_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/empty_subclass_of_nullable_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/empty_subclass_of_nullable_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/empty_subclass_of_optional_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/empty_subclass_of_optional_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/empty_subclass_of_positional_multi_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/empty_subclass_of_positional_multi_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/empty_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/empty_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/empty_subclass_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/empty_subclass_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/generic_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/generic_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/nullable_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/nullable_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/single_field_nested_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/single_field_nested_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro/single_field_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro/single_field_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/data_macro_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/data_macro_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/empty_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/empty_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/empty_nested_subclass_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/empty_nested_subclass_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/empty_subclass_of_named_multi_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/empty_subclass_of_named_multi_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/empty_subclass_of_named_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/empty_subclass_of_named_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/empty_subclass_of_nullable_named_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/empty_subclass_of_nullable_named_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/empty_subclass_of_nullable_optional_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/empty_subclass_of_nullable_optional_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/empty_subclass_of_nullable_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/empty_subclass_of_nullable_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/empty_subclass_of_optional_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/empty_subclass_of_optional_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/empty_subclass_of_positional_multi_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/empty_subclass_of_positional_multi_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/empty_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/empty_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/empty_subclass_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/empty_subclass_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/generic_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/generic_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/nullable_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/nullable_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/single_field_nested_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/single_field_nested_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/single_field_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/single_field_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro/static_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro/static_field_class_test.dart -------------------------------------------------------------------------------- /test/src/equatable_macro_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/equatable_macro_test.dart -------------------------------------------------------------------------------- /test/src/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/main.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/empty_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/empty_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/empty_nested_subclass_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/empty_nested_subclass_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/empty_subclass_of_named_multi_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/empty_subclass_of_named_multi_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/empty_subclass_of_named_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/empty_subclass_of_named_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/empty_subclass_of_nullable_named_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/empty_subclass_of_nullable_named_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/empty_subclass_of_nullable_optional_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/empty_subclass_of_nullable_optional_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/empty_subclass_of_nullable_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/empty_subclass_of_nullable_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/empty_subclass_of_optional_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/empty_subclass_of_optional_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/empty_subclass_of_positional_multi_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/empty_subclass_of_positional_multi_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/empty_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/empty_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/empty_subclass_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/empty_subclass_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/generic_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/generic_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/nullable_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/nullable_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/single_field_nested_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/single_field_nested_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/single_field_subclass_of_positional_single_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/single_field_subclass_of_positional_single_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro/static_field_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro/static_field_class_test.dart -------------------------------------------------------------------------------- /test/src/stringable_macro_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/data_class/HEAD/test/src/stringable_macro_test.dart --------------------------------------------------------------------------------