KeyToPath constructor

const KeyToPath({
  1. required String key,
  2. int? mode,
  3. required String path,
})

Default constructor.

Implementation

const KeyToPath({
  required this.key,
  this.mode,
  required this.path,
});