LangPackString constructor

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

Lang Pack String constructor.

Implementation

const LangPackString({
  required this.key,
  required this.value,
}) : super._();