Tool constructor

Tool({
  1. String? toolId,
  2. required String name,
})

Implementation

Tool({String? toolId, required this.name})
    : toolId = toolId ?? GeigerConstant.uuid;