size static method

double size(
  1. BuildContext context
)

Implementation

static double size(BuildContext context) =>
    maxWidth(context) < maxHeight(context) ? maxWidth(context) : maxHeight(context);