of static method
Implementation
static FUIPalette of(BuildContext context) {
final palette = Theme.of(context).extension<FUIPalette>();
assert(
palette != null,
'FUIPalette not registered in ThemeData.extensions',
);
return palette!;
}