constructors property
Iterable<ContractFunction>
get
constructors
Finds all methods that are constructors of this contract.
Note that the library at the moment does not support creating contracts.
Implementation
Iterable<ContractFunction> get constructors =>
functions.where((t) => t.isConstructor);