RefactoringOptions.fromJson constructor

RefactoringOptions.fromJson(
  1. JsonDecoder jsonDecoder,
  2. String jsonPath,
  3. Object? json,
  4. RefactoringKind kind, {
  5. ClientUriConverter? clientUriConverter,
})

Implementation

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