Vector4.fromJSON constructor

Vector4.fromJSON(
  1. List<num>? json
)

Implementation

Vector4.fromJSON(List<num>? json) {
  if (json != null) {
    x = json[0];
    y = json[1];
    z = json[2];
    w = json[3];
  }
}