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