fitHeight method

  1. @override
void fitHeight(
  1. double height,
  2. Map object
)
override

A convenience method for fitSize where the width is automatically chosen from the aspect ratio of object and the given constraint on height.

Implementation

@override
fitHeight(height, object) {
  fit.height(this, height, object, false);
}