fromJson method

  1. @override
TabBarIndicatorSize? fromJson(
  1. String? json
)
override

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';
}