fromDynamic static method
Builds the builder from a Map-like dynamic structure. This expects the JSON format to be of the following structure:
{
}
Implementation
static JsonMergeSemanticsBuilder? fromDynamic(
dynamic map, {
JsonWidgetRegistry? registry,
}) {
JsonMergeSemanticsBuilder? result;
if (map != null) {
result = JsonMergeSemanticsBuilder();
}
return result;
}