command property
      
      Object?
      get
      command
      
    
    
An allow-run or deny-run permission can be scoped to a specific executable,
 which would be relative to the start-up CWD of the Deno CLI.
Implementation
_i2.Object? get command => _i3.getProperty(
      this,
      'command',
    );
      
      set
      command
      (Object? value) 
      
    
    
    
Implementation
set command(_i2.Object? value) {
  _i3.setProperty(
    this,
    'command',
    value ?? _i6.undefined,
  );
}