charIndex property
      
      int?
      get
      charIndex
      
    
    
The character index associated with this audio buffer.
Implementation
int? get charIndex => _wrapped.charIndex;
      
      set
      charIndex
      (int? v) 
      
    
    
    
Implementation
set charIndex(int? v) {
  _wrapped.charIndex = v;
}