allocateGlobal method

String allocateGlobal([
  1. String name = ''
])

Implementation

String allocateGlobal([String name = '']) {
  final result = globalAllocator.allocate(name);
  return result;
}