normalizeConfiguredKeyPath static method

String? normalizeConfiguredKeyPath(
  1. String? keyPath
)

Implementation

static String? normalizeConfiguredKeyPath(String? keyPath) {
  if (keyPath == null || keyPath.trim().isEmpty) {
    return null;
  }
  return p.normalize(p.absolute(keyPath));
}