KeyboardEventInit constructor
Implementation
factory KeyboardEventInit(
{String? key,
String? code,
int? location,
bool? repeat,
bool? isComposing}) =>
KeyboardEventInit._(
key: key ?? '',
code: code ?? '',
location: location ?? 0,
repeat: repeat ?? false,
isComposing: isComposing ?? false);