consentJson property

String consentJson

Implementation

String get consentJson {
  if (_consentJson == null) {
    print('Reading the informed consent from file: $consentPath');
    _consentJson = File(consentPath).readAsStringSync();
  }
  return _consentJson!;
}