tryStatement abstract method
Returns a newly created try statement. The list of catchClauses
can be
null
if there are no catch clauses. The finallyKeyword
and
finallyBlock
can be null
if there is no finally clause.
Implementation
TryStatement tryStatement(
Token tryKeyword,
Block body,
List<CatchClause> catchClauses,
Token? finallyKeyword,
Block? finallyBlock);