When I know for sure that my variable won't be null and Flow doesn't, I use an unwrap() function:
export default function unwrap(value: T): $NonMaybeType {
if (value !== null && value !== undefined) return value
throw new Error('Unwrapping not possible because the variable is null or undefined!')
}