NestedKeyEntry constructor

const NestedKeyEntry({
  1. required String keyName,
  2. required String leadingComments,
  3. required String? inlineComment,
  4. String? rawValueBlock,
})

Implementation

const NestedKeyEntry({
  required this.keyName,
  required this.leadingComments,
  required this.inlineComment,
  this.rawValueBlock,
});