fromJSON static method

dynamic fromJSON(
  1. dynamic data
)

Implementation

static fromJSON(data) {
  return PlaneGeometry(data["width"], data["height"], data["widthSegments"], data["heightSegments"]);
}