static Guid? parse(String? input) { if (input == null || input.isEmpty) { return null; } else { return Guid(input); } }