wrapper method

  1. @override
String? wrapper(
  1. String? child
)
override

Implementation

@override
String? wrapper(String? child) {
  if (_ratio == null) return child;
  return "AspectRatio(aspectRatio: $_ratio, child: $child)";
}