getTransform method

  1. @override
Float64List getTransform()
override

Returns the current transform including the combined result of all transform methods executed since the creation of this Canvas object, and respecting the save/restore history.

Methods that can change the current transform include translate, scale, rotate, skew, and transform. The restore method can also modify the current transform by restoring it to the same value it had before its associated save or saveLayer call.

Implementation

@override
Float64List getTransform() {
  // TODO: implement getTransform
  return Float64List.fromList([]);
}