UpdateShapePropertiesRequest.fromJson constructor

UpdateShapePropertiesRequest.fromJson(
  1. Map json_
)

Implementation

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