I\'ve been investigating JSON parsing for my Flutter app and have a question about factory constructors that I can\'t resolve. I\'m trying to understand the advantage of usi
null
. (However, some people dislike returning null from a factory constructor.)new
. (But using new is now discouraged.)async
. (A factory constructor must return a type of its class, so it cannot return a Future
.)const
.