toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      'id': this.id,
      'name': this.name,
      'properties': this.properties.map((v) => v.toJson()).toList(),
      'array': this.array,
      'isconfig': this.isConfig
    };