fromJson method
Implementation
@override
TabBarIndicatorSize? fromJson(String? json) {
if (json == null) return null;
switch (json) {
case 'label':
return TabBarIndicatorSize.label;
case 'tab':
return TabBarIndicatorSize.tab;
}
throw 'Unsuported_Json_Value';
}