MBGeneralParameter constructor

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

Initializes a MBGeneralParameter with the key and the value.

Implementation

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