RawKeyEventDataWeb constructor Null safety
Creates a key event data structure specific for Web.
Implementation
const RawKeyEventDataWeb({
required this.code,
required this.key,
this.location = 0,
this.metaState = modifierNone,
this.keyCode = 0,
}) : assert(code != null),
assert(metaState != null);