of static method

Implementation

static ScaleInheritedStateContainer? of(BuildContext? context) {
  if (context != null) {
    final ScaleInheritedStateContainer? result = maybeOf(context);
    return result;
  }
  return null;
}