UpdateShapePropertiesRequest.fromJson constructor

UpdateShapePropertiesRequest.fromJson(
  1. Map json_
)

Implementation

UpdateShapePropertiesRequest.fromJson(core.Map json_)
    : this(
        fields: json_.containsKey('fields')
            ? json_['fields'] as core.String
            : null,
        objectId: json_.containsKey('objectId')
            ? json_['objectId'] as core.String
            : null,
        shapeProperties: json_.containsKey('shapeProperties')
            ? ShapeProperties.fromJson(json_['shapeProperties']
                as core.Map<core.String, core.dynamic>)
            : null,
      );