PartialStackFrame constructor Null safety
Creates a new PartialStackFrame instance. All arguments are required and must not be null.
Implementation
const PartialStackFrame({
required this.package,
required this.className,
required this.method,
}) : assert(className != null),
assert(method != null),
assert(package != null);