Tool constructor

Tool({
  1. required String type,
  2. required CustomFuction toolFunction,
})

Implementation

Tool({
  required this.type,
  required this.toolFunction,
});