fromJson method

SDUIWidget fromJson(
  1. Map<String, dynamic>? json
)

Load the attributes of the widget descriptor from

Implementation

SDUIWidget fromJson(Map<String, dynamic>? json) {
  id = json?['id'];
  return this;
}