fromDict static method

Sp3dV3D fromDict(
  1. Map<String, dynamic> src
)

Restore this object from the dictionary.

  • src : A dictionary made with toDict of this class.

Implementation

static Sp3dV3D fromDict(Map<String, dynamic> src) {
  return Sp3dV3D(src['x'], src['y'], src['z']);
}