ToolKindMove.fromJson constructor
ToolKindMove.fromJson(
- Object? value
Implementation
factory ToolKindMove.fromJson(Object? value) {
final decoded = ToolKind.fromJson(value);
if (decoded is! ToolKindMove) {
throw const AcpWireDecodeException('Expected ToolKindMove.');
}
return decoded;
}