expand method
Implementation
Future<void> expand() {
if (_expandedSize == null) return SynchronousFuture(null);
return _controller.animateTo(
_expandedSize!,
duration: kMediumEnterDuration,
curve: Curves.easeOutCubic,
);
}
Future<void> expand() {
if (_expandedSize == null) return SynchronousFuture(null);
return _controller.animateTo(
_expandedSize!,
duration: kMediumEnterDuration,
curve: Curves.easeOutCubic,
);
}