copyFromUnknown method

  1. @override
Vector2 copyFromUnknown(
  1. dynamic array, [
  2. int offset = 0
])
override

Implementation

@override
Vector2 copyFromUnknown(array, [int offset = 0]) {
  x = array[offset].toDouble();
  y = array[offset + 1].toDouble();

  return this;
}