InAppFieldPath.fromString constructor

InAppFieldPath.fromString(
  1. String path
)

Implementation

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