build method

  1. @override
Widget build(
  1. BuildContext context
)
override

Implementation

@override
Widget build(BuildContext context) {
  if (themeObjectHashCode != buildObjectHashCode) {
    buildObjectHashCode = themeObjectHashCode;
    cachedWidget = buildChild(context);
  }

  return buildCached(context);
}