lineHeight property

double? get lineHeight

Implementation

static double? get lineHeight {
  try {
    final family = GetIt.I<FontSizeController>().fontLineHeight.value;
    return family.value;
  } catch (_) {
    return null;
  }
}