getPlan method

String getPlan(
  1. IStatus status,
  2. bool detailed
)

Implementation

String getPlan(IStatus status, bool detailed) {
  final res = _getPlan(self, status.self, detailed ? 1 : 0);
  status.checkStatus();
  return res.toDartString(); // we don't free res - it's a static buffer
}