CreateShapeResponse.fromJson constructor

CreateShapeResponse.fromJson(
  1. Map json_
)

Implementation

CreateShapeResponse.fromJson(core.Map json_)
    : this(
        objectId: json_.containsKey('objectId')
            ? json_['objectId'] as core.String
            : null,
      );