addPropertiesFromJson method

Page addPropertiesFromJson(
  1. Map<String, dynamic> json
)

Add a multiples properties from a json to this properties.

Implementation

Page addPropertiesFromJson(Map<String, dynamic> json) {
  this.properties.addAllFromJson(json);
  return this;
}