SimpleMessage constructor

SimpleMessage(
  1. String key,
  2. String raw
)

Implementation

SimpleMessage(this.key, this.raw) {
  final res = init(raw);
  _value = res[0];
  _parameters = res[1];
}