CustomElement.fromJson constructor

CustomElement.fromJson(
  1. dynamic json
)

Implementation

CustomElement.fromJson(dynamic json) {
  _elementName = json['ElementName'];
  _elementNameSpace = json['ElementNameSpace'];
  _childElement = json['ChildElement'];
  _childBody = json['ChildBody'];
}