convertTarget method
Implementation
@override
FontWeight convertTarget(int source) {
return FontWeight.values.firstWhere((fw) => fw.value == source, orElse: () => FontWeight.normal,
);
}
@override
FontWeight convertTarget(int source) {
return FontWeight.values.firstWhere((fw) => fw.value == source, orElse: () => FontWeight.normal,
);
}