convertTarget method

  1. @override
FontWeight convertTarget(
  1. int source
)
override

Implementation

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