codePin property

String? get codePin

Implementation

String? get codePin => _codePin;
set codePin (String? value)

Implementation

set codePin(String? value) {
  _codePin = value;
  notifyListeners();
}