InAppFieldPath.fromString constructor
InAppFieldPath.fromString(
- String path
Implementation
factory InAppFieldPath.fromString(String path) {
if (path.isEmpty) {
throw ArgumentError.value(path, 'path', 'must not be empty.');
}
return InAppFieldPath(path.split('.'));
}