StringResponse constructor

StringResponse(
  1. List<int> bytes
)

Implementation

factory StringResponse(List<int> bytes) {
  final rootRef = fb.BufferContext.fromBytes(bytes);
  return reader.read(rootRef, 0);
}