resolve method
Implementation
@override
double resolve(BuildContext context) {
final themeValue = MixTheme.of(context).spaces[this];
assert(
themeValue != null,
'SpaceToken $name is not defined in the theme',
);
return themeValue!;
}