OptionalParam constructor

OptionalParam({
  1. required String key,
  2. required String value,
})

Creates a new instance of OptionalParam with the given key and value.

Implementation

OptionalParam({
  required this.key,
  required this.value,
});