ExtractMethodOptions.fromRefactoringParams constructor
ExtractMethodOptions.fromRefactoringParams(
- EditGetRefactoringParams refactoringParams,
- Request request, {
- ClientUriConverter? clientUriConverter,
Implementation
factory ExtractMethodOptions.fromRefactoringParams(
EditGetRefactoringParams refactoringParams,
Request request, {
ClientUriConverter? clientUriConverter,
}) {
return ExtractMethodOptions.fromJson(
RequestDecoder(request),
'options',
refactoringParams.options,
clientUriConverter: clientUriConverter,
);
}