attachBuffer method

  1. @internal
void attachBuffer(
  1. String? buffer
)
inherited

Internal helper to attach the buffer to the event, do not call directly.

Implementation

@internal
void attachBuffer(String? buffer) {
  assert(_buffer == null, 'Buffer is already initialized.');
  _buffer = buffer;
}