TBinding constructor

TBinding({
  1. required String name,
  2. required bool isBound,
  3. required String value,
})

Implementation

TBinding({
  required this.name,
  required this.isBound,
  required this.value,
});