RefactoringOptions.fromJson constructor
RefactoringOptions.fromJson(
- JsonDecoder jsonDecoder,
- String jsonPath,
- Object? json,
- RefactoringKind kind, {
- ClientUriConverter? clientUriConverter,
Implementation
factory RefactoringOptions.fromJson(
JsonDecoder jsonDecoder,
String jsonPath,
Object? json,
RefactoringKind kind, {
ClientUriConverter? clientUriConverter,
}) {
return refactoringOptionsFromJson(
jsonDecoder,
jsonPath,
json,
kind,
clientUriConverter: clientUriConverter,
);
}