We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No response
**.jsonc { "$id":"path_to_class_or_any_unique_id_a",// id "__className":"ClassA", "id":"No.001", "name":"JsonToDart" } { "$id":"path_to_class_or_any_unique_id_b",// id "__className":"ClassB", "id":"No.002", "name":"JsonToDart", "key1":{"$ref":"path_to_class_or_any_unique_id_a"}, "key2":[{"$ref":"path_to_class_or_any_unique_id_a"}] }
**.dart class ClassA{ final String id; final String name;
... }
class ClassB{ final String id; final String name;
final ClassA key1; final List key2; ... }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
Current Behavior
No response
Expected Behavior
**.jsonc
{
"$id":"path_to_class_or_any_unique_id_a",// id
"__className":"ClassA",
"id":"No.001",
"name":"JsonToDart"
}
{
"$id":"path_to_class_or_any_unique_id_b",// id
"__className":"ClassB",
"id":"No.002",
"name":"JsonToDart",
"key1":{"$ref":"path_to_class_or_any_unique_id_a"},
"key2":[{"$ref":"path_to_class_or_any_unique_id_a"}]
}
**.dart
class ClassA{
final String id;
final String name;
...
}
class ClassB{
final String id;
final String name;
final ClassA key1;
final List key2;
...
}
Steps To Reproduce
No response
Version
No response
Relevant JSON syntax
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: