isPostfixCompletionApplicable method

  1. @experimental
Future<IsPostfixCompletionApplicableResult> isPostfixCompletionApplicable(
  1. String? file,
  2. String? key,
  3. int? offset
)

Determine if the request postfix completion template is applicable at the given location in the given file.

Implementation

@experimental
Future<IsPostfixCompletionApplicableResult> isPostfixCompletionApplicable(
    String? file, String? key, int? offset) {
  final Map m = {'file': file, 'key': key, 'offset': offset};
  return _call('edit.isPostfixCompletionApplicable', m)
      .then(IsPostfixCompletionApplicableResult.parse);
}