Formula constructor

Formula({
  1. required String formula,
  2. required String range,
  3. required String sheet,
  4. bool isProtected = true,
})

Implementation

Formula({
  required this.formula,
  required this.range,
  required this.sheet,
  this.isProtected = true,
});