calculateWidgetSize method
Implementation
Size calculateWidgetSize() {
assert(key is GlobalKey, Strings.elementMustBeAGlobalKey);
return Size(
(key as GlobalKey).currentContext?.size?.width ?? 0,
(key as GlobalKey).currentContext?.size?.height ?? 0,
);
}