initialMemory property

String? get initialMemory

Gets the initial Java heap size

Implementation

String? get initialMemory {
  final option = _jvmOptions.firstWhere(
    (option) => option.startsWith('-Xms'),
    orElse: () => '',
  );

  if (option.isEmpty) {
    return null;
  }

  return option.substring(4); // Remove the '-Xms' prefix
}